|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 | <groupId>org.htmlunit</groupId>
|
6 | 6 | <artifactId>htmlunit-xpath</artifactId>
|
7 |
| - <version>3.10.0</version> |
| 7 | + <version>3.11.0</version> |
8 | 8 | <name>HtmlUnit-XPath</name>
|
9 | 9 | <organization>
|
10 | 10 | <name>HtmlUnit</name>
|
|
26 | 26 | <checkstyle.version>10.12.5</checkstyle.version>
|
27 | 27 | <spotbugs.version>4.8.3</spotbugs.version>
|
28 | 28 | <pmd.version>6.55.0</pmd.version>
|
29 |
| - <dependencycheck.version>9.0.8</dependencycheck.version> |
| 29 | + <dependencycheck.version>9.0.9</dependencycheck.version> |
30 | 30 | </properties>
|
31 | 31 |
|
32 | 32 | <dependencies>
|
33 | 33 | <dependency>
|
34 | 34 | <groupId>org.junit.jupiter</groupId>
|
35 | 35 | <artifactId>junit-jupiter-engine</artifactId>
|
36 |
| - <version>5.10.1</version> |
| 36 | + <version>5.10.2</version> |
37 | 37 | <scope>test</scope>
|
38 | 38 | </dependency>
|
39 | 39 | <dependency>
|
|
48 | 48 | <plugins>
|
49 | 49 | <plugin>
|
50 | 50 | <artifactId>maven-compiler-plugin</artifactId>
|
51 |
| - <version>3.11.0</version> |
| 51 | + <version>3.12.1</version> |
52 | 52 | </plugin>
|
53 | 53 | <plugin>
|
54 | 54 | <artifactId>maven-surefire-plugin</artifactId>
|
55 |
| - <version>3.2.2</version> |
| 55 | + <version>3.2.5</version> |
56 | 56 | </plugin>
|
57 | 57 | <plugin>
|
58 | 58 | <artifactId>maven-jar-plugin</artifactId>
|
|
143 | 143 | <plugin>
|
144 | 144 | <groupId>com.github.spotbugs</groupId>
|
145 | 145 | <artifactId>spotbugs-maven-plugin</artifactId>
|
146 |
| - <version>4.8.2.0</version> |
| 146 | + <version>4.8.3.0</version> |
147 | 147 | <dependencies>
|
148 | 148 | <dependency>
|
149 | 149 | <groupId>com.github.spotbugs</groupId>
|
|
192 | 192 | </execution>
|
193 | 193 | </executions>
|
194 | 194 | </plugin>
|
| 195 | + <plugin> |
| 196 | + <groupId>org.apache.maven.plugins</groupId> |
| 197 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 198 | + <version>3.4.1</version> |
| 199 | + <executions> |
| 200 | + <execution> |
| 201 | + <configuration> |
| 202 | + <rules> |
| 203 | + <requireMavenVersion> |
| 204 | + <version>3.6.3</version> |
| 205 | + </requireMavenVersion> |
| 206 | + <requireJavaVersion> |
| 207 | + <version>1.8.0</version> |
| 208 | + </requireJavaVersion> |
| 209 | + <dependencyConvergence /> |
| 210 | + </rules> |
| 211 | + </configuration> |
| 212 | + <goals> |
| 213 | + <goal>enforce</goal> |
| 214 | + </goals> |
| 215 | + </execution> |
| 216 | + </executions> |
| 217 | + </plugin> |
195 | 218 | </plugins>
|
196 | 219 | </build>
|
197 | 220 |
|
|
0 commit comments