|
5 | 5 |
|
6 | 6 | <groupId>org.htmlunit</groupId> |
7 | 7 | <artifactId>htmlunit3-android</artifactId> |
8 | | - <version>3.7.0</version> |
| 8 | + <version>4.3.0</version> |
9 | 9 |
|
10 | 10 | <name>HtmlUnitAndroid</name> |
11 | 11 | <organization> |
|
26 | 26 | <maven.compiler.source>8</maven.compiler.source> |
27 | 27 | <maven.compiler.target>8</maven.compiler.target> |
28 | 28 |
|
29 | | - <htmlunit.version>3.7.0</htmlunit.version> |
| 29 | + <htmlunit.version>4.3.0</htmlunit.version> |
30 | 30 | <!-- overwrite the jetty version to be compatible with older android api's --> |
31 | 31 | <!-- see https://github.com/HtmlUnit/htmlunit-android/issues/5 --> |
32 | 32 | <jetty.version>9.4.19.v20190610</jetty.version> |
|
46 | 46 | <dependency> |
47 | 47 | <groupId>org.apache.commons</groupId> |
48 | 48 | <artifactId>commons-lang3</artifactId> |
49 | | - <version>3.13.0</version> |
| 49 | + <version>3.14.0</version> |
50 | 50 | </dependency> |
51 | 51 | <dependency> |
52 | 52 | <groupId>org.apache.commons</groupId> |
53 | 53 | <artifactId>commons-text</artifactId> |
54 | | - <version>1.11.0</version> |
| 54 | + <version>1.12.0</version> |
55 | 55 | <exclusions> |
56 | 56 | <exclusion> |
57 | 57 | <groupId>org.apache.commons</groupId> |
|
63 | 63 | <dependency> |
64 | 64 | <groupId>commons-io</groupId> |
65 | 65 | <artifactId>commons-io</artifactId> |
66 | | - <version>2.15.0</version> |
| 66 | + <version>2.16.1</version> |
67 | 67 | </dependency> |
68 | 68 | <dependency> |
69 | 69 | <groupId>commons-logging</groupId> |
70 | 70 | <artifactId>commons-logging</artifactId> |
71 | | - <version>1.2</version> |
| 71 | + <version>1.3.2</version> |
72 | 72 | </dependency> |
73 | 73 | <dependency> |
74 | 74 | <groupId>commons-net</groupId> |
75 | 75 | <artifactId>commons-net</artifactId> |
76 | | - <version>3.10.0</version> |
| 76 | + <version>3.11.1</version> |
77 | 77 | </dependency> |
78 | 78 | <dependency> |
79 | 79 | <groupId>org.brotli</groupId> |
|
98 | 98 | <plugin> |
99 | 99 | <groupId>org.apache.maven.plugins</groupId> |
100 | 100 | <artifactId>maven-jar-plugin</artifactId> |
101 | | - <version>3.3.0</version> |
| 101 | + <version>3.4.2</version> |
102 | 102 | <configuration> |
103 | 103 | <archive> |
104 | 104 | <manifest> |
|
111 | 111 | <plugin> |
112 | 112 | <groupId>org.apache.maven.plugins</groupId> |
113 | 113 | <artifactId>maven-shade-plugin</artifactId> |
114 | | - <version>3.5.1</version> |
| 114 | + <version>3.6.0</version> |
115 | 115 | <executions> |
116 | 116 | <execution> |
117 | 117 | <phase>package</phase> |
|
169 | 169 | <plugin> |
170 | 170 | <groupId>org.apache.maven.plugins</groupId> |
171 | 171 | <artifactId>maven-source-plugin</artifactId> |
172 | | - <version>3.3.0</version> |
| 172 | + <version>3.3.1</version> |
173 | 173 | <executions> |
174 | 174 | <execution> |
175 | 175 | <goals> |
|
181 | 181 | <plugin> |
182 | 182 | <groupId>org.apache.maven.plugins</groupId> |
183 | 183 | <artifactId>maven-javadoc-plugin</artifactId> |
184 | | - <version>3.6.0</version> |
| 184 | + <version>3.7.0</version> |
185 | 185 | <configuration> |
186 | 186 | <quiet>true</quiet> |
187 | 187 | <!-- see https://stackoverflow.com/questions/69320220/maven-javadoc-listed-classes-twice --> |
|
205 | 205 | <plugin> |
206 | 206 | <groupId>org.apache.maven.plugins</groupId> |
207 | 207 | <artifactId>maven-gpg-plugin</artifactId> |
208 | | - <version>3.1.0</version> |
| 208 | + <version>3.2.4</version> |
209 | 209 | <executions> |
210 | 210 | <execution> |
211 | 211 | <phase>verify</phase> |
|
215 | 215 | </execution> |
216 | 216 | </executions> |
217 | 217 | </plugin> |
| 218 | + <plugin> |
| 219 | + <groupId>org.apache.maven.plugins</groupId> |
| 220 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 221 | + <version>3.5.0</version> |
| 222 | + <executions> |
| 223 | + <execution> |
| 224 | + <configuration> |
| 225 | + <rules> |
| 226 | + <requireMavenVersion> |
| 227 | + <version>3.6.3</version> |
| 228 | + </requireMavenVersion> |
| 229 | + <requireJavaVersion> |
| 230 | + <version>1.8.0</version> |
| 231 | + </requireJavaVersion> |
| 232 | + <dependencyConvergence /> |
| 233 | + </rules> |
| 234 | + </configuration> |
| 235 | + <goals> |
| 236 | + <goal>enforce</goal> |
| 237 | + </goals> |
| 238 | + </execution> |
| 239 | + </executions> |
| 240 | + </plugin> |
218 | 241 | </plugins> |
219 | 242 | </build> |
220 | 243 |
|
|
254 | 277 | </developers> |
255 | 278 | <contributors> |
256 | 279 | </contributors> |
| 280 | + |
257 | 281 | <distributionManagement> |
258 | 282 | <snapshotRepository> |
259 | | - <id>sonatype-nexus-snapshots</id> |
| 283 | + <id>s01-sonatype-nexus-snapshots</id> |
260 | 284 | <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
261 | 285 | </snapshotRepository> |
262 | 286 | <repository> |
263 | | - <id>sonatype-nexus-staging</id> |
| 287 | + <id>s01-sonatype-nexus-staging</id> |
264 | 288 | <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> |
265 | 289 | </repository> |
266 | 290 | </distributionManagement> |
|
0 commit comments