|
25 | 25 |
|
26 | 26 | <modelVersion>4.0.0</modelVersion> |
27 | 27 |
|
28 | | - <parent> |
29 | | - <groupId>org.sonatype.oss</groupId> |
30 | | - <artifactId>oss-parent</artifactId> |
31 | | - <version>7</version> |
32 | | - </parent> |
33 | | - |
34 | 28 | <groupId>com.zenjava</groupId> |
35 | 29 | <artifactId>javafx-rest-archetype</artifactId> |
36 | | - <version>2.0.2-SNAPSHOT</version> |
| 30 | + <version>8.1.5-SNAPSHOT</version> |
37 | 31 | <packaging>maven-archetype</packaging> |
38 | 32 |
|
39 | 33 | <name>JavaFX REST Archetype</name> |
40 | 34 |
|
41 | | - <url>https://github.com/zonski/javafx-rest-archetype</url> |
| 35 | + <url>https://github.com/javafx-maven-plugin/javafx-rest-archetype</url> |
42 | 36 | <description> |
43 | 37 | The JavaFX Basic Archetype provides a Maven archetype for generating a basic JavaFX REST client-server starter |
44 | 38 | project. |
|
61 | 55 | <roles> |
62 | 56 | <role>Original Author</role> |
63 | 57 | </roles> |
| 58 | + </developer> |
| 59 | + <developer> |
| 60 | + <id>fibrefox</id> |
| 61 | + <name>Danny Althoff</name> |
| 62 | + <email>fibrefox@dynamicfiles.de</email> |
| 63 | + <roles> |
| 64 | + <role>Maintainer</role> |
| 65 | + </roles> |
64 | 66 | </developer> |
65 | 67 | </developers> |
66 | 68 |
|
67 | 69 | <scm> |
68 | | - <connection>scm:git:git://github.com/zonski/javafx-rest-archetype.git</connection> |
69 | | - <developerConnection>scm:git:git@github.com:zonski/javafx-rest-archetype.git</developerConnection> |
70 | | - <url>https://github.com/zonski/javafx-rest-archetype.git</url> |
| 70 | + <connection>scm:git:git://github.com/javafx-maven-plugin/javafx-rest-archetype.git</connection> |
| 71 | + <developerConnection>scm:git:git@github.com:javafx-maven-plugin/javafx-rest-archetype.git</developerConnection> |
| 72 | + <url>https://github.com/javafx-maven-plugin/javafx-rest-archetype.git</url> |
71 | 73 | </scm> |
72 | 74 |
|
73 | 75 | <issueManagement> |
74 | 76 | <system>GitHub</system> |
75 | | - <url>https://github.com/zonski/javafx-rest-archetype/issues</url> |
76 | | - </issueManagement> |
77 | | - |
| 77 | + <url>https://github.com/javafx-maven-plugin/javafx-rest-archetype/issues</url> |
| 78 | + </issueManagement> |
| 79 | + |
| 80 | + <distributionManagement> |
| 81 | + <snapshotRepository> |
| 82 | + <id>ossrh</id> |
| 83 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 84 | + </snapshotRepository> |
| 85 | + <repository> |
| 86 | + <id>ossrh</id> |
| 87 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 88 | + </repository> |
| 89 | + </distributionManagement> |
78 | 90 |
|
79 | 91 | <build> |
80 | 92 | <extensions> |
81 | 93 | <extension> |
82 | 94 | <groupId>org.apache.maven.archetype</groupId> |
83 | 95 | <artifactId>archetype-packaging</artifactId> |
84 | | - <version>2.2</version> |
| 96 | + <version>2.4</version> |
85 | 97 | </extension> |
86 | 98 | </extensions> |
87 | 99 |
|
88 | 100 | <pluginManagement> |
89 | 101 | <plugins> |
90 | 102 | <plugin> |
91 | 103 | <artifactId>maven-archetype-plugin</artifactId> |
92 | | - <version>2.2</version> |
| 104 | + <version>2.4</version> |
93 | 105 | </plugin> |
94 | 106 | </plugins> |
95 | 107 | </pluginManagement> |
96 | | - </build> |
97 | | - |
98 | | - <profiles> |
99 | | - <profile> |
100 | | - <id>release-sign-artifacts</id> |
101 | | - <activation> |
102 | | - <property> |
103 | | - <name>performRelease</name> |
104 | | - <value>true</value> |
105 | | - </property> |
106 | | - </activation> |
107 | | - <build> |
108 | | - <plugins> |
109 | | - <plugin> |
110 | | - <artifactId>maven-gpg-plugin</artifactId> |
111 | | - <version>1.2</version> |
112 | | - <executions> |
113 | | - <execution> |
114 | | - <id>sign-artifacts</id> |
115 | | - <phase>verify</phase> |
116 | | - <goals> |
117 | | - <goal>sign</goal> |
118 | | - </goals> |
119 | | - </execution> |
120 | | - </executions> |
121 | | - <configuration> |
122 | | - <mavenExecutorId>forked-path</mavenExecutorId> |
123 | | - </configuration> |
124 | | - </plugin> |
125 | | - </plugins> |
126 | | - </build> |
127 | | - </profile> |
| 108 | + </build> |
| 109 | + |
| 110 | + <properties> |
| 111 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 112 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 113 | + |
| 114 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 115 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 116 | + |
| 117 | + <!-- profile-triggers --> |
| 118 | + <doSign>false</doSign> |
| 119 | + <doRelease>false</doRelease> |
| 120 | + </properties> |
| 121 | + |
| 122 | + <profiles> |
| 123 | + <profile> |
| 124 | + <id>generate-signed-files</id> |
| 125 | + <activation> |
| 126 | + <property> |
| 127 | + <name>doSign</name> |
| 128 | + <value>true</value> |
| 129 | + </property> |
| 130 | + </activation> |
| 131 | + <build> |
| 132 | + <plugins> |
| 133 | + <!-- sign stuff for maven-central via OSSRH/Sonatype --> |
| 134 | + <plugin> |
| 135 | + <groupId>org.apache.maven.plugins</groupId> |
| 136 | + <artifactId>maven-gpg-plugin</artifactId> |
| 137 | + <version>1.6</version> |
| 138 | + <executions> |
| 139 | + <execution> |
| 140 | + <id>sign-artifacts</id> |
| 141 | + <phase>verify</phase> |
| 142 | + <goals> |
| 143 | + <goal>sign</goal> |
| 144 | + </goals> |
| 145 | + </execution> |
| 146 | + </executions> |
| 147 | + </plugin> |
| 148 | + </plugins> |
| 149 | + </build> |
| 150 | + </profile> |
| 151 | + <profile> |
| 152 | + <id>release-to-ossrh</id> |
| 153 | + <activation> |
| 154 | + <property> |
| 155 | + <name>doRelease</name> |
| 156 | + <value>true</value> |
| 157 | + </property> |
| 158 | + </activation> |
| 159 | + <build> |
| 160 | + <plugins> |
| 161 | + <plugin> |
| 162 | + <groupId>org.sonatype.plugins</groupId> |
| 163 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 164 | + <version>1.6.5</version> |
| 165 | + <extensions>true</extensions> |
| 166 | + <configuration> |
| 167 | + <serverId>ossrh</serverId> |
| 168 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 169 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 170 | + </configuration> |
| 171 | + </plugin> |
| 172 | + </plugins> |
| 173 | + </build> |
| 174 | + </profile> |
128 | 175 | </profiles> |
129 | 176 |
|
130 | 177 | </project> |
0 commit comments