|
5 | 5 |
|
6 | 6 | <groupId>com.nordstrom.ui-tools</groupId> |
7 | 7 | <artifactId>htmlunit-remote</artifactId> |
8 | | - <version>4.32.1-SNAPSHOT</version> |
| 8 | + <version>4.33.1-SNAPSHOT</version> |
9 | 9 |
|
10 | 10 | <name>htmlunit-remote</name> |
11 | 11 | <description>This is the remote wrapper for HtmlUnitDriver</description> |
|
38 | 38 | <checkstyle.version>10.15.0</checkstyle.version> |
39 | 39 | <spotbugs.version>4.8.4</spotbugs.version> |
40 | 40 | <dependencycheck.version>9.1.0</dependencycheck.version> |
| 41 | + <compiler-plugin.version>3.8.1</compiler-plugin.version> |
| 42 | + <checkstyle-plugin.version>3.3.1</checkstyle-plugin.version> |
| 43 | + <spotbugs-plugin.version>4.8.4.0</spotbugs-plugin.version> |
| 44 | + <source-plugin.version>3.3.1</source-plugin.version> |
| 45 | + <javadoc-plugin.version>3.6.3</javadoc-plugin.version> |
| 46 | + <surefire-plugin.version>3.2.5</surefire-plugin.version> |
| 47 | + <gpg-plugin.version>3.2.4</gpg-plugin.version> |
| 48 | + <assembly-plugin.version>3.7.1</assembly-plugin.version> |
| 49 | + <enforcer-plugin.version>3.4.1</enforcer-plugin.version> |
| 50 | + <staging-plugin.version>1.7.0</staging-plugin.version> |
| 51 | + <release-plugin.version>3.1.1</release-plugin.version> |
41 | 52 | <skipSigning>true</skipSigning> |
42 | 53 | </properties> |
43 | 54 |
|
|
51 | 62 | <distributionManagement> |
52 | 63 | <snapshotRepository> |
53 | 64 | <id>ossrh</id> |
54 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 65 | + <url>https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots</url> |
55 | 66 | </snapshotRepository> |
56 | 67 | <repository> |
57 | 68 | <id>ossrh</id> |
58 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 69 | + <url>https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/</url> |
59 | 70 | </repository> |
60 | 71 | </distributionManagement> |
61 | 72 |
|
|
68 | 79 | </dependency> |
69 | 80 | </dependencies> |
70 | 81 | </dependencyManagement> |
| 82 | + |
71 | 83 | <dependencies> |
72 | 84 | <dependency> |
73 | 85 | <groupId>org.seleniumhq.selenium</groupId> |
|
100 | 112 | <build> |
101 | 113 | <plugins> |
102 | 114 | <plugin> |
103 | | - <groupId>org.apache.maven.plugins</groupId> |
104 | 115 | <artifactId>maven-compiler-plugin</artifactId> |
105 | | - <version>3.13.0</version> |
| 116 | + <version>${compiler-plugin.version}</version> |
106 | 117 | <configuration> |
107 | 118 | <release>11</release> |
108 | 119 | <showDeprecation>true</showDeprecation> |
|
111 | 122 | </configuration> |
112 | 123 | </plugin> |
113 | 124 | <plugin> |
114 | | - <groupId>org.apache.maven.plugins</groupId> |
115 | 125 | <artifactId>maven-checkstyle-plugin</artifactId> |
116 | | - <version>3.3.1</version> |
| 126 | + <version>${checkstyle-plugin.version}</version> |
117 | 127 | <configuration> |
118 | 128 | <configLocation>checkstyle.xml</configLocation> |
119 | 129 | <suppressionsLocation>checkstyle_suppressions.xml</suppressionsLocation> |
|
130 | 140 | <plugin> |
131 | 141 | <groupId>com.github.spotbugs</groupId> |
132 | 142 | <artifactId>spotbugs-maven-plugin</artifactId> |
133 | | - <version>4.8.4.0</version> |
| 143 | + <version>${spotbugs-plugin.version}</version> |
134 | 144 | <dependencies> |
135 | 145 | <dependency> |
136 | 146 | <groupId>com.github.spotbugs</groupId> |
|
143 | 153 | </configuration> |
144 | 154 | </plugin> |
145 | 155 | <plugin> |
146 | | - <groupId>org.apache.maven.plugins</groupId> |
147 | 156 | <artifactId>maven-source-plugin</artifactId> |
148 | | - <version>3.3.1</version> |
| 157 | + <version>${source-plugin.version}</version> |
149 | 158 | <executions> |
150 | 159 | <execution> |
151 | 160 | <id>attach-sources</id> |
|
157 | 166 | </executions> |
158 | 167 | </plugin> |
159 | 168 | <plugin> |
160 | | - <groupId>org.apache.maven.plugins</groupId> |
161 | 169 | <artifactId>maven-javadoc-plugin</artifactId> |
162 | | - <version>3.6.3</version> |
| 170 | + <version>${javadoc-plugin.version}</version> |
163 | 171 | <configuration> |
164 | 172 | <quiet>true</quiet> |
165 | 173 | <detectLinks>true</detectLinks> |
|
174 | 182 | </executions> |
175 | 183 | </plugin> |
176 | 184 | <plugin> |
177 | | - <groupId>org.apache.maven.plugins</groupId> |
178 | 185 | <artifactId>maven-surefire-plugin</artifactId> |
179 | | - <version>3.2.5</version> |
| 186 | + <version>${surefire-plugin.version}</version> |
180 | 187 | <configuration> |
181 | 188 | <includes> |
182 | 189 | <include>**/*.java</include> |
183 | 190 | </includes> |
184 | 191 | </configuration> |
185 | 192 | </plugin> |
186 | 193 | <plugin> |
187 | | - <groupId>org.apache.maven.plugins</groupId> |
188 | 194 | <artifactId>maven-gpg-plugin</artifactId> |
189 | | - <version>3.2.4</version> |
| 195 | + <version>${gpg-plugin.version}</version> |
190 | 196 | <executions> |
191 | 197 | <execution> |
192 | 198 | <phase>verify</phase> |
|
197 | 203 | </executions> |
198 | 204 | </plugin> |
199 | 205 | <plugin> |
200 | | - <groupId>org.apache.maven.plugins</groupId> |
201 | 206 | <artifactId>maven-assembly-plugin</artifactId> |
202 | | - <version>3.7.1</version> |
| 207 | + <version>${assembly-plugin.version}</version> |
203 | 208 | <configuration> |
204 | 209 | <descriptors> |
205 | 210 | <descriptor>src/assembly/assembly.xml</descriptor> |
|
215 | 220 | </executions> |
216 | 221 | </plugin> |
217 | 222 | <plugin> |
218 | | - <groupId>org.apache.maven.plugins</groupId> |
219 | 223 | <artifactId>maven-enforcer-plugin</artifactId> |
220 | | - <version>3.4.1</version> |
| 224 | + <version>${enforcer-plugin.version}</version> |
221 | 225 | <executions> |
222 | 226 | <execution> |
223 | 227 | <id>enforce</id> |
|
242 | 246 | <plugin> |
243 | 247 | <groupId>org.sonatype.plugins</groupId> |
244 | 248 | <artifactId>nexus-staging-maven-plugin</artifactId> |
245 | | - <version>1.6.13</version> |
| 249 | + <version>${staging-plugin.version}</version> |
246 | 250 | <extensions>true</extensions> |
| 251 | + <dependencies> |
| 252 | + <dependency> |
| 253 | + <groupId>io.github.x-stream</groupId> |
| 254 | + <artifactId>mxparser</artifactId> |
| 255 | + <version>1.2.1</version> |
| 256 | + </dependency> |
| 257 | + </dependencies> |
247 | 258 | <configuration> |
248 | 259 | <serverId>ossrh</serverId> |
249 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 260 | + <nexusUrl>https://ossrh-staging-api.central.sonatype.com/</nexusUrl> |
250 | 261 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
251 | 262 | </configuration> |
252 | 263 | </plugin> |
253 | 264 | <plugin> |
254 | | - <groupId>org.apache.maven.plugins</groupId> |
255 | 265 | <artifactId>maven-release-plugin</artifactId> |
256 | | - <version>3.0.0-M6</version> |
| 266 | + <version>${release-plugin.version}</version> |
257 | 267 | <configuration> |
258 | 268 | <autoVersionSubmodules>true</autoVersionSubmodules> |
259 | 269 | <useReleaseProfile>false</useReleaseProfile> |
|
0 commit comments