|
4 | 4 |
|
5 | 5 | <groupId>uk.org.webcompere</groupId>
|
6 | 6 | <artifactId>system-stubs-parent</artifactId>
|
7 |
| - <version>0.0.1</version> |
| 7 | + <version>1.0.0-SNAPSHOT</version> |
8 | 8 | <packaging>pom</packaging>
|
9 | 9 |
|
10 | 10 | <name>System Stubs Parent</name>
|
|
19 | 19 | </license>
|
20 | 20 | </licenses>
|
21 | 21 |
|
| 22 | + <developers> |
| 23 | + <developer> |
| 24 | + <name>Ashley Frieze</name> |
| 25 | + |
| 26 | + <organization>webcompere.org.uk</organization> |
| 27 | + <organizationUrl>https://github.com/webcompere</organizationUrl> |
| 28 | + </developer> |
| 29 | + </developers> |
| 30 | + |
22 | 31 | <scm>
|
23 | 32 | <connection>scm:git:git://github.com/webcompere/system-stubs.git</connection>
|
24 | 33 | < developerConnection>scm:git: [email protected]:webcompere/system-stubs.git</ developerConnection>
|
25 | 34 | <url>https://github.com/webcompere/system-stubs/</url>
|
| 35 | + <tag>system-stubs-parent-1.0.0</tag> |
26 | 36 | </scm>
|
27 | 37 |
|
28 | 38 | <modules>
|
|
31 | 41 | <module>system-stubs-jupiter</module>
|
32 | 42 | </modules>
|
33 | 43 |
|
| 44 | + <properties> |
| 45 | + <version.maven-scm-provider-gitexe>1.11.2</version.maven-scm-provider-gitexe> |
| 46 | + <gpg.passphrase>providedfromoutside</gpg.passphrase> |
| 47 | + <version.maven-gpg-plugin>1.6</version.maven-gpg-plugin> |
| 48 | + <version.maven-javadoc-plugin>3.2.0</version.maven-javadoc-plugin> |
| 49 | + <version.maven-source-plugin>3.2.1</version.maven-source-plugin> |
| 50 | + <version.maven-deploy-plugin>3.0.0-M1</version.maven-deploy-plugin> |
| 51 | + <version.nexus-staging-maven-plugin>1.6.8</version.nexus-staging-maven-plugin> |
| 52 | + <version.maven-release-plugin>3.0.0-M1</version.maven-release-plugin> |
| 53 | + <version.maven-compiler-plugin>3.8.1</version.maven-compiler-plugin> |
| 54 | + </properties> |
| 55 | + |
34 | 56 | <dependencyManagement>
|
35 | 57 | <dependencies>
|
36 | 58 | <dependency>
|
37 | 59 | <groupId>uk.org.webcompere</groupId>
|
38 | 60 | <artifactId>system-stubs-core</artifactId>
|
39 |
| - <version>0.0.1</version> |
| 61 | + <version>1.0.0-SNAPSHOT</version> |
40 | 62 | </dependency>
|
41 | 63 |
|
42 | 64 | <dependency>
|
|
91 | 113 | <build>
|
92 | 114 | <pluginManagement>
|
93 | 115 | <plugins>
|
| 116 | + <plugin> |
| 117 | + <groupId>org.apache.maven.plugins</groupId> |
| 118 | + <artifactId>maven-compiler-plugin</artifactId> |
| 119 | + <version>${version.maven-compiler-plugin}</version> |
| 120 | + <configuration> |
| 121 | + <source>1.8</source> |
| 122 | + <target>1.8</target> |
| 123 | + </configuration> |
| 124 | + </plugin> |
94 | 125 | <plugin>
|
95 | 126 | <groupId>org.apache.maven.plugins</groupId>
|
96 | 127 | <artifactId>maven-surefire-plugin</artifactId>
|
|
162 | 193 | </execution>
|
163 | 194 | </executions>
|
164 | 195 | </plugin>
|
| 196 | + |
| 197 | + <plugin> |
| 198 | + <groupId>org.apache.maven.plugins</groupId> |
| 199 | + <artifactId>maven-source-plugin</artifactId> |
| 200 | + <version>${version.maven-source-plugin}</version> |
| 201 | + <executions> |
| 202 | + <execution> |
| 203 | + <id>attach-sources</id> |
| 204 | + <goals> |
| 205 | + <goal>jar</goal> |
| 206 | + </goals> |
| 207 | + </execution> |
| 208 | + </executions> |
| 209 | + </plugin> |
| 210 | + <plugin> |
| 211 | + <groupId>org.apache.maven.plugins</groupId> |
| 212 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 213 | + <version>${version.maven-javadoc-plugin}</version> |
| 214 | + <configuration> |
| 215 | + <encoding>UTF-8</encoding> |
| 216 | + </configuration> |
| 217 | + <executions> |
| 218 | + <execution> |
| 219 | + <id>attach-javadoc</id> |
| 220 | + <goals> |
| 221 | + <goal>jar</goal> |
| 222 | + </goals> |
| 223 | + </execution> |
| 224 | + </executions> |
| 225 | + </plugin> |
| 226 | + <plugin> |
| 227 | + <artifactId>maven-deploy-plugin</artifactId> |
| 228 | + <version>${version.maven-deploy-plugin}</version> |
| 229 | + <executions> |
| 230 | + <execution> |
| 231 | + <id>default-deploy</id> |
| 232 | + <phase>deploy</phase> |
| 233 | + <goals> |
| 234 | + <goal>deploy</goal> |
| 235 | + </goals> |
| 236 | + </execution> |
| 237 | + </executions> |
| 238 | + </plugin> |
| 239 | + <plugin> |
| 240 | + <groupId>org.sonatype.plugins</groupId> |
| 241 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 242 | + <version>${version.nexus-staging-maven-plugin}</version> |
| 243 | + <extensions>true</extensions> |
| 244 | + <configuration> |
| 245 | + <serverId>ossrh</serverId> |
| 246 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 247 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 248 | + </configuration> |
| 249 | + </plugin> |
| 250 | + <plugin> |
| 251 | + <groupId>org.apache.maven.plugins</groupId> |
| 252 | + <artifactId>maven-release-plugin</artifactId> |
| 253 | + <version>${version.maven-release-plugin}</version> |
| 254 | + <configuration> |
| 255 | + <localCheckout>true</localCheckout> |
| 256 | + <pushChanges>false</pushChanges> |
| 257 | + </configuration> |
| 258 | + <dependencies> |
| 259 | + <dependency> |
| 260 | + <groupId>org.apache.maven.scm</groupId> |
| 261 | + <artifactId>maven-scm-provider-gitexe</artifactId> |
| 262 | + <version>${version.maven-scm-provider-gitexe}</version> |
| 263 | + </dependency> |
| 264 | + </dependencies> |
| 265 | + </plugin> |
| 266 | + <plugin> |
| 267 | + <groupId>org.apache.maven.plugins</groupId> |
| 268 | + <artifactId>maven-site-plugin</artifactId> |
| 269 | + <version>3.9.1</version> |
| 270 | + </plugin> |
165 | 271 | </plugins>
|
166 | 272 | </pluginManagement>
|
167 | 273 | </build>
|
168 | 274 |
|
169 |
| -<!-- <profiles>--> |
170 |
| -<!-- <profile>--> |
171 |
| -<!-- <id>nonrelease</id>--> |
172 |
| -<!-- <activation>--> |
173 |
| -<!-- <activeByDefault>true</activeByDefault>--> |
174 |
| -<!-- </activation>--> |
175 |
| -<!-- <build>--> |
176 |
| -<!-- <plugins>--> |
177 |
| -<!-- <plugin>--> |
178 |
| -<!-- <groupId>org.apache.maven.plugins</groupId>--> |
179 |
| -<!-- <artifactId>maven-gpg-plugin</artifactId>--> |
180 |
| -<!-- <configuration>--> |
181 |
| -<!-- <skip>true</skip>--> |
182 |
| -<!-- </configuration>--> |
183 |
| -<!-- </plugin>--> |
184 |
| -<!-- </plugins>--> |
185 |
| -<!-- </build>--> |
186 |
| -<!-- </profile>--> |
187 |
| -<!-- <profile>--> |
188 |
| -<!-- <id>release</id>--> |
189 |
| -<!-- <build>--> |
190 |
| -<!-- <plugins>--> |
191 |
| -<!-- <plugin>--> |
192 |
| -<!-- <groupId>org.apache.maven.plugins</groupId>--> |
193 |
| -<!-- <artifactId>maven-gpg-plugin</artifactId>--> |
194 |
| -<!-- </plugin>--> |
195 |
| -<!-- </plugins>--> |
196 |
| -<!-- </build>--> |
197 |
| -<!-- </profile>--> |
198 |
| -<!-- </profiles>--> |
| 275 | + <distributionManagement> |
| 276 | + <snapshotRepository> |
| 277 | + <id>ossrh</id> |
| 278 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 279 | + </snapshotRepository> |
| 280 | + <repository> |
| 281 | + <id>ossrh</id> |
| 282 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 283 | + </repository> |
| 284 | + </distributionManagement> |
| 285 | + |
| 286 | + <issueManagement> |
| 287 | + <system>Github</system> |
| 288 | + <url>https://github.com/webcompere/system-stubs/issues</url> |
| 289 | + </issueManagement> |
| 290 | + |
| 291 | + <ciManagement> |
| 292 | + <system>AppVeyor</system> |
| 293 | + <url>https://ci.appveyor.com/project/ashleyfrieze/system-stubs</url> |
| 294 | + </ciManagement> |
| 295 | + |
| 296 | + <profiles> |
| 297 | + <!-- GPG Signature on release --> |
| 298 | + <profile> |
| 299 | + <id>release-sign-artifacts</id> |
| 300 | + <activation> |
| 301 | + <property> |
| 302 | + <name>performRelease</name> |
| 303 | + <value>true</value> |
| 304 | + </property> |
| 305 | + </activation> |
| 306 | + <build> |
| 307 | + <plugins> |
| 308 | + <plugin> |
| 309 | + <groupId>org.apache.maven.plugins</groupId> |
| 310 | + <artifactId>maven-gpg-plugin</artifactId> |
| 311 | + <version>${version.maven-gpg-plugin}</version> |
| 312 | + <executions> |
| 313 | + <execution> |
| 314 | + <id>sign-artifacts</id> |
| 315 | + <phase>verify</phase> |
| 316 | + <goals> |
| 317 | + <goal>sign</goal> |
| 318 | + </goals> |
| 319 | + </execution> |
| 320 | + </executions> |
| 321 | + </plugin> |
| 322 | + </plugins> |
| 323 | + </build> |
| 324 | + </profile> |
| 325 | + </profiles> |
199 | 326 |
|
200 | 327 | </project>
|
0 commit comments