|
27 | 27 | <properties> |
28 | 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
29 | 29 | <maven.compiler.release>8</maven.compiler.release> |
30 | | - <settings.version>3.0.7</settings.version> |
31 | | - <jsch.version>0.2.24</jsch.version> |
32 | | - <commons-io.version>2.18.0</commons-io.version> |
33 | | - <guava.version>33.4.6-jre</guava.version> |
| 30 | + <settings.version>3.0.10</settings.version> |
| 31 | + <jsch.version>2.27.2</jsch.version> |
| 32 | + <commons-io.version>2.20.0</commons-io.version> |
34 | 33 | <java-utils.version>3.4.1</java-utils.version> |
35 | 34 | <testng.version>7.5.1</testng.version> |
36 | | - <compiler-plugin.version>3.10.1</compiler-plugin.version> |
37 | | - <surefire-plugin.version>3.0.0-M7</surefire-plugin.version> |
38 | | - <source-plugin.version>3.2.1</source-plugin.version> |
39 | | - <javadoc-plugin.version>3.4.0</javadoc-plugin.version> |
40 | | - <gpg-plugin.version>3.0.1</gpg-plugin.version> |
41 | | - <staging-plugin.version>1.6.13</staging-plugin.version> |
42 | | - <release-plugin.version>3.0.0-M6</release-plugin.version> |
| 35 | + <compiler-plugin.version>3.14.0</compiler-plugin.version> |
| 36 | + <surefire-plugin.version>3.5.3</surefire-plugin.version> |
| 37 | + <source-plugin.version>3.3.1</source-plugin.version> |
| 38 | + <javadoc-plugin.version>3.11.2</javadoc-plugin.version> |
| 39 | + <gpg-plugin.version>3.2.8</gpg-plugin.version> |
| 40 | + <staging-plugin.version>1.7.0</staging-plugin.version> |
| 41 | + <release-plugin.version>3.1.1</release-plugin.version> |
43 | 42 | <skipSigning>true</skipSigning> |
44 | 43 | </properties> |
45 | 44 |
|
|
53 | 52 | <distributionManagement> |
54 | 53 | <snapshotRepository> |
55 | 54 | <id>ossrh</id> |
56 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 55 | + <url>>https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots</url> |
57 | 56 | </snapshotRepository> |
58 | 57 | <repository> |
59 | 58 | <id>ossrh</id> |
60 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 59 | + <url>https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/</url> |
61 | 60 | </repository> |
62 | 61 | </distributionManagement> |
63 | 62 |
|
64 | | - <dependencyManagement> |
65 | | - <dependencies> |
66 | | - <dependency> |
67 | | - <groupId>com.github.mwiede</groupId> |
68 | | - <artifactId>jsch</artifactId> |
69 | | - <version>${jsch.version}</version> |
70 | | - </dependency> |
71 | | - <dependency> |
72 | | - <groupId>commons-io</groupId> |
73 | | - <artifactId>commons-io</artifactId> |
74 | | - <version>${commons-io.version}</version> |
75 | | - </dependency> |
76 | | - <dependency> |
77 | | - <groupId>com.google.guava</groupId> |
78 | | - <artifactId>guava</artifactId> |
79 | | - <version>${guava.version}</version> |
80 | | - </dependency> |
81 | | - <dependency> |
82 | | - <groupId>com.nordstrom.tools</groupId> |
83 | | - <artifactId>java-utils</artifactId> |
84 | | - <version>${java-utils.version}</version> |
85 | | - </dependency> |
86 | | - <dependency> |
87 | | - <groupId>com.nordstrom.tools</groupId> |
88 | | - <artifactId>settings</artifactId> |
89 | | - <version>${settings.version}</version> |
90 | | - </dependency> |
91 | | - <dependency> |
92 | | - <groupId>org.testng</groupId> |
93 | | - <artifactId>testng</artifactId> |
94 | | - <version>${testng.version}</version> |
95 | | - </dependency> |
96 | | - </dependencies> |
97 | | - </dependencyManagement> |
98 | | - |
99 | 63 | <dependencies> |
100 | 64 | <dependency> |
101 | 65 | <groupId>com.github.mwiede</groupId> |
102 | 66 | <artifactId>jsch</artifactId> |
| 67 | + <version>${jsch.version}</version> |
103 | 68 | </dependency> |
104 | 69 | <dependency> |
105 | 70 | <groupId>commons-io</groupId> |
106 | 71 | <artifactId>commons-io</artifactId> |
107 | | - </dependency> |
108 | | - <dependency> |
109 | | - <groupId>com.google.guava</groupId> |
110 | | - <artifactId>guava</artifactId> |
| 72 | + <version>${commons-io.version}</version> |
111 | 73 | </dependency> |
112 | 74 | <dependency> |
113 | 75 | <groupId>com.nordstrom.tools</groupId> |
114 | 76 | <artifactId>java-utils</artifactId> |
| 77 | + <version>${java-utils.version}</version> |
115 | 78 | </dependency> |
116 | 79 | <dependency> |
117 | 80 | <groupId>com.nordstrom.tools</groupId> |
118 | 81 | <artifactId>settings</artifactId> |
| 82 | + <version>${settings.version}</version> |
119 | 83 | </dependency> |
120 | 84 | <dependency> |
121 | 85 | <groupId>org.testng</groupId> |
122 | 86 | <artifactId>testng</artifactId> |
| 87 | + <version>${testng.version}</version> |
123 | 88 | <scope>test</scope> |
124 | 89 | </dependency> |
125 | 90 | </dependencies> |
126 | 91 |
|
127 | 92 | <build> |
128 | | - <pluginManagement> |
129 | | - <plugins> |
130 | | - <plugin> |
131 | | - <groupId>org.apache.maven.plugins</groupId> |
132 | | - <artifactId>maven-compiler-plugin</artifactId> |
133 | | - <version>${compiler-plugin.version}</version> |
134 | | - </plugin> |
135 | | - <plugin> |
136 | | - <groupId>org.apache.maven.plugins</groupId> |
137 | | - <artifactId>maven-surefire-plugin</artifactId> |
138 | | - <version>${surefire-plugin.version}</version> |
139 | | - </plugin> |
140 | | - <plugin> |
141 | | - <groupId>org.apache.maven.plugins</groupId> |
142 | | - <artifactId>maven-source-plugin</artifactId> |
143 | | - <version>${source-plugin.version}</version> |
144 | | - </plugin> |
145 | | - <plugin> |
146 | | - <groupId>org.apache.maven.plugins</groupId> |
147 | | - <artifactId>maven-javadoc-plugin</artifactId> |
148 | | - <version>${javadoc-plugin.version}</version> |
149 | | - </plugin> |
150 | | - <plugin> |
151 | | - <groupId>org.apache.maven.plugins</groupId> |
152 | | - <artifactId>maven-gpg-plugin</artifactId> |
153 | | - <version>${gpg-plugin.version}</version> |
154 | | - </plugin> |
155 | | - <plugin> |
156 | | - <groupId>org.sonatype.plugins</groupId> |
157 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
158 | | - <version>${staging-plugin.version}</version> |
159 | | - </plugin> |
160 | | - <plugin> |
161 | | - <groupId>org.apache.maven.plugins</groupId> |
162 | | - <artifactId>maven-release-plugin</artifactId> |
163 | | - <version>${release-plugin.version}</version> |
164 | | - </plugin> |
165 | | - </plugins> |
166 | | - </pluginManagement> |
167 | 93 | <plugins> |
168 | 94 | <plugin> |
169 | | - <groupId>org.apache.maven.plugins</groupId> |
170 | 95 | <artifactId>maven-compiler-plugin</artifactId> |
| 96 | + <version>${compiler-plugin.version}</version> |
171 | 97 | </plugin> |
172 | 98 | <plugin> |
173 | | - <groupId>org.apache.maven.plugins</groupId> |
174 | 99 | <artifactId>maven-surefire-plugin</artifactId> |
| 100 | + <version>${surefire-plugin.version}</version> |
175 | 101 | </plugin> |
176 | 102 | <plugin> |
177 | | - <groupId>org.apache.maven.plugins</groupId> |
178 | 103 | <artifactId>maven-source-plugin</artifactId> |
| 104 | + <version>${source-plugin.version}</version> |
179 | 105 | <executions> |
180 | 106 | <execution> |
181 | 107 | <id>attach-sources</id> |
|
186 | 112 | </executions> |
187 | 113 | </plugin> |
188 | 114 | <plugin> |
189 | | - <groupId>org.apache.maven.plugins</groupId> |
190 | 115 | <artifactId>maven-javadoc-plugin</artifactId> |
| 116 | + <version>${javadoc-plugin.version}</version> |
191 | 117 | <executions> |
192 | 118 | <execution> |
193 | 119 | <id>attach-javadocs</id> |
|
198 | 124 | </executions> |
199 | 125 | </plugin> |
200 | 126 | <plugin> |
201 | | - <groupId>org.apache.maven.plugins</groupId> |
202 | 127 | <artifactId>maven-gpg-plugin</artifactId> |
| 128 | + <version>${gpg-plugin.version}</version> |
203 | 129 | <executions> |
204 | 130 | <execution> |
205 | 131 | <id>sign-artifacts</id> |
|
218 | 144 | <plugin> |
219 | 145 | <groupId>org.sonatype.plugins</groupId> |
220 | 146 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 147 | + <version>${staging-plugin.version}</version> |
221 | 148 | <extensions>true</extensions> |
| 149 | + <dependencies> |
| 150 | + <dependency> |
| 151 | + <groupId>io.github.x-stream</groupId> |
| 152 | + <artifactId>mxparser</artifactId> |
| 153 | + <version>1.2.1</version> |
| 154 | + </dependency> |
| 155 | + </dependencies> |
222 | 156 | <configuration> |
223 | 157 | <serverId>ossrh</serverId> |
224 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 158 | + <nexusUrl>https://ossrh-staging-api.central.sonatype.com/</nexusUrl> |
225 | 159 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
226 | 160 | </configuration> |
227 | 161 | </plugin> |
228 | 162 | <plugin> |
229 | | - <groupId>org.apache.maven.plugins</groupId> |
230 | 163 | <artifactId>maven-release-plugin</artifactId> |
| 164 | + <version>${release-plugin.version}</version> |
231 | 165 | <configuration> |
232 | 166 | <autoVersionSubmodules>true</autoVersionSubmodules> |
233 | 167 | <useReleaseProfile>false</useReleaseProfile> |
|
0 commit comments