|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | | - |
5 | | - <groupId>com.nordstrom.test-automation.tools</groupId> |
| 4 | + <groupId>com.nordstrom.tools</groupId> |
6 | 5 | <artifactId>junit-foundation</artifactId> |
| 6 | + <version>3.1.1-SNAPSHOT</version> |
7 | 7 | <packaging>jar</packaging> |
8 | | - <version>1.0-SNAPSHOT</version> |
9 | 8 |
|
10 | 9 | <name>JUnit Foundation</name> |
11 | 10 | <description>This is the foundation framework for JUnit automation</description> |
12 | | - <url>https://git.nordstrom.net/projects/MFATT/repos/junit-foundation/browse</url> |
| 11 | + <url>https://github.com/Nordstrom/JUnit-Foundation</url> |
| 12 | + |
| 13 | + <licenses> |
| 14 | + <license> |
| 15 | + <name>The Apache License, Version 2.0</name> |
| 16 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 17 | + </license> |
| 18 | + </licenses> |
| 19 | + |
| 20 | + <developers> |
| 21 | + <developer> |
| 22 | + <name>Scott Babcock</name> |
| 23 | + |
| 24 | + <organization>Nordstrom</organization> |
| 25 | + <organizationUrl>https://shop.nordstrom.com</organizationUrl> |
| 26 | + </developer> |
| 27 | + </developers> |
13 | 28 |
|
14 | 29 | <properties> |
15 | 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | 31 | <lifecycle-mapping.version>1.0.0</lifecycle-mapping.version> |
17 | | - <nordstrom-common.version>1.3.0.0</nordstrom-common.version> |
| 32 | + <java-utils.version>1.3.2</java-utils.version> |
18 | 33 | <surefire-plugin.version>2.19.1</surefire-plugin.version> |
19 | 34 | <compiler-plugin.version>3.6.0</compiler-plugin.version> |
20 | 35 | <source-plugin.version>3.0.1</source-plugin.version> |
21 | 36 | <javadoc-plugin.version>2.10.4</javadoc-plugin.version> |
22 | | - <deploy-plugin.version>2.8.2</deploy-plugin.version> |
23 | | - <settings.version>0.2.0.0</settings.version> |
| 37 | + <settings.version>2.0.7</settings.version> |
24 | 38 | <junit.version>4.12</junit.version> |
25 | 39 | <bytebuddy.version>1.7.5</bytebuddy.version> |
26 | 40 | <logback.version>1.2.2</logback.version> |
| 41 | + <gpg-plugin.version>1.6</gpg-plugin.version> |
| 42 | + <staging-plugin.version>1.6.7</staging-plugin.version> |
| 43 | + <release-plugin.version>2.5.3</release-plugin.version> |
27 | 44 | </properties> |
28 | 45 |
|
| 46 | + <scm> |
| 47 | + <connection>scm:git:https://github.com/Nordstrom/JUnit-Foundation.git</connection> |
| 48 | + <developerConnection>scm:git:https://github.com/Nordstrom/JUnit-Foundation.git</developerConnection> |
| 49 | + <url>https://github.com/Nordstrom/JUnit-Foundation/tree/master</url> |
| 50 | + <tag>HEAD</tag> |
| 51 | + </scm> |
| 52 | + |
29 | 53 | <distributionManagement> |
| 54 | + <snapshotRepository> |
| 55 | + <id>ossrh</id> |
| 56 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 57 | + </snapshotRepository> |
30 | 58 | <repository> |
31 | | - <id>releases</id> |
32 | | - <url>https://mvnrepo.nordstrom.net/nexus/content/repositories/releases</url> |
| 59 | + <id>ossrh</id> |
| 60 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
33 | 61 | </repository> |
34 | 62 | </distributionManagement> |
35 | | - |
| 63 | + |
36 | 64 | <dependencyManagement> |
37 | 65 | <dependencies> |
38 | 66 | <dependency> |
39 | | - <groupId>com.nordstrom.test-automation.tools</groupId> |
40 | | - <artifactId>common</artifactId> |
41 | | - <version>${nordstrom-common.version}</version> |
| 67 | + <groupId>com.nordstrom.tools</groupId> |
| 68 | + <artifactId>java-utils</artifactId> |
| 69 | + <version>${java-utils.version}</version> |
42 | 70 | </dependency> |
43 | 71 | <dependency> |
44 | | - <groupId>com.nordstrom.test-automation.tools</groupId> |
| 72 | + <groupId>com.nordstrom.tools</groupId> |
45 | 73 | <artifactId>settings</artifactId> |
46 | 74 | <version>${settings.version}</version> |
47 | 75 | </dependency> |
|
65 | 93 |
|
66 | 94 | <dependencies> |
67 | 95 | <dependency> |
68 | | - <groupId>com.nordstrom.test-automation.tools</groupId> |
69 | | - <artifactId>common</artifactId> |
| 96 | + <groupId>com.nordstrom.tools</groupId> |
| 97 | + <artifactId>java-utils</artifactId> |
70 | 98 | </dependency> |
71 | 99 | <dependency> |
72 | | - <groupId>com.nordstrom.test-automation.tools</groupId> |
| 100 | + <groupId>com.nordstrom.tools</groupId> |
73 | 101 | <artifactId>settings</artifactId> |
74 | 102 | </dependency> |
75 | 103 | <dependency> |
|
144 | 172 | </plugin> |
145 | 173 | <plugin> |
146 | 174 | <groupId>org.apache.maven.plugins</groupId> |
147 | | - <artifactId>maven-deploy-plugin</artifactId> |
148 | | - <version>${deploy-plugin.version}</version> |
| 175 | + <artifactId>maven-gpg-plugin</artifactId> |
| 176 | + <version>${gpg-plugin.version}</version> |
| 177 | + </plugin> |
| 178 | + <plugin> |
| 179 | + <groupId>org.sonatype.plugins</groupId> |
| 180 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 181 | + <version>${staging-plugin.version}</version> |
| 182 | + </plugin> |
| 183 | + <plugin> |
| 184 | + <groupId>org.apache.maven.plugins</groupId> |
| 185 | + <artifactId>maven-release-plugin</artifactId> |
| 186 | + <version>${release-plugin.version}</version> |
149 | 187 | </plugin> |
150 | 188 | </plugins> |
151 | 189 | </pluginManagement> |
|
199 | 237 | </plugin> |
200 | 238 | <plugin> |
201 | 239 | <groupId>org.apache.maven.plugins</groupId> |
202 | | - <artifactId>maven-deploy-plugin</artifactId> |
| 240 | + <artifactId>maven-gpg-plugin</artifactId> |
203 | 241 | <executions> |
204 | 242 | <execution> |
205 | | - <id>deploy-file</id> |
206 | | - <phase>deploy</phase> |
| 243 | + <id>sign-artifacts</id> |
| 244 | + <phase>verify</phase> |
207 | 245 | <goals> |
208 | | - <goal>deploy-file</goal> |
| 246 | + <goal>sign</goal> |
209 | 247 | </goals> |
210 | 248 | <configuration> |
211 | | - <file>${project.build.directory}${file.separator}${project.build.finalName}.jar</file> |
212 | | - <repositoryId>releases</repositoryId> |
213 | | - <url>https://mvnrepo.nordstrom.net/nexus/content/repositories/releases</url> |
| 249 | + <keyname>${gpg.keyname}</keyname> |
| 250 | + <passphraseServerId>${gpg.keyname}</passphraseServerId> |
214 | 251 | </configuration> |
215 | 252 | </execution> |
216 | 253 | </executions> |
217 | 254 | </plugin> |
| 255 | + <plugin> |
| 256 | + <groupId>org.sonatype.plugins</groupId> |
| 257 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 258 | + <extensions>true</extensions> |
| 259 | + <configuration> |
| 260 | + <serverId>ossrh</serverId> |
| 261 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 262 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 263 | + </configuration> |
| 264 | + </plugin> |
| 265 | + <plugin> |
| 266 | + <groupId>org.apache.maven.plugins</groupId> |
| 267 | + <artifactId>maven-release-plugin</artifactId> |
| 268 | + <configuration> |
| 269 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 270 | + <useReleaseProfile>false</useReleaseProfile> |
| 271 | + <releaseProfiles>release</releaseProfiles> |
| 272 | + <goals>deploy</goals> |
| 273 | + </configuration> |
| 274 | + </plugin> |
218 | 275 | </plugins> |
219 | 276 | </build> |
220 | 277 | </project> |
0 commit comments