|
20 | 20 | <spotbugs.version>4.8.4</spotbugs.version> |
21 | 21 | <archunit.version>1.3.0</archunit.version> |
22 | 22 | <dependencycheck.version>9.1.0</dependencycheck.version> |
| 23 | + <skipSigning>true</skipSigning> |
23 | 24 | </properties> |
24 | 25 |
|
| 26 | + <dependencyManagement> |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>org.slf4j</groupId> |
| 30 | + <artifactId>slf4j-api</artifactId> |
| 31 | + <version>1.7.35</version> |
| 32 | + </dependency> |
| 33 | + </dependencies> |
| 34 | + </dependencyManagement> |
25 | 35 | <dependencies> |
26 | 36 | <dependency> |
27 | 37 | <groupId>org.seleniumhq.selenium</groupId> |
|
41 | 51 | <dependency> |
42 | 52 | <groupId>org.seleniumhq.selenium</groupId> |
43 | 53 | <artifactId>htmlunit3-driver</artifactId> |
44 | | - <version>4.22.0-SNAPSHOT</version> |
| 54 | + <version>${selenium.version}</version> |
45 | 55 | </dependency> |
46 | 56 | <dependency> |
47 | 57 | <groupId>junit</groupId> |
|
150 | 160 | </execution> |
151 | 161 | </executions> |
152 | 162 | </plugin> |
153 | | - <plugin> |
154 | | - <groupId>org.owasp</groupId> |
155 | | - <artifactId>dependency-check-maven</artifactId> |
156 | | - <version>${dependencycheck.version}</version> |
157 | | - <configuration> |
158 | | - <failBuildOnCVSS>0</failBuildOnCVSS> |
159 | | - </configuration> |
160 | | - <executions> |
161 | | - <execution> |
162 | | - <goals> |
163 | | - <goal>check</goal> |
164 | | - </goals> |
165 | | - </execution> |
166 | | - </executions> |
167 | | - </plugin> |
| 163 | +<!-- <plugin>--> |
| 164 | +<!-- <groupId>org.owasp</groupId>--> |
| 165 | +<!-- <artifactId>dependency-check-maven</artifactId>--> |
| 166 | +<!-- <version>${dependencycheck.version}</version>--> |
| 167 | +<!-- <configuration>--> |
| 168 | +<!-- <failBuildOnCVSS>0</failBuildOnCVSS>--> |
| 169 | +<!-- </configuration>--> |
| 170 | +<!-- <executions>--> |
| 171 | +<!-- <execution>--> |
| 172 | +<!-- <goals>--> |
| 173 | +<!-- <goal>check</goal>--> |
| 174 | +<!-- </goals>--> |
| 175 | +<!-- </execution>--> |
| 176 | +<!-- </executions>--> |
| 177 | +<!-- </plugin>--> |
168 | 178 | <plugin> |
169 | 179 | <groupId>org.apache.maven.plugins</groupId> |
170 | 180 | <artifactId>maven-assembly-plugin</artifactId> |
|
208 | 218 | </execution> |
209 | 219 | </executions> |
210 | 220 | </plugin> |
| 221 | + <plugin> |
| 222 | + <groupId>org.sonatype.plugins</groupId> |
| 223 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 224 | + <version>1.6.13</version> |
| 225 | + <extensions>true</extensions> |
| 226 | + <configuration> |
| 227 | + <serverId>ossrh</serverId> |
| 228 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 229 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 230 | + </configuration> |
| 231 | + </plugin> |
| 232 | + <plugin> |
| 233 | + <groupId>org.apache.maven.plugins</groupId> |
| 234 | + <artifactId>maven-release-plugin</artifactId> |
| 235 | + <version>3.0.0-M6</version> |
| 236 | + <configuration> |
| 237 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 238 | + <useReleaseProfile>false</useReleaseProfile> |
| 239 | + <releaseProfiles>release</releaseProfiles> |
| 240 | + <goals>deploy</goals> |
| 241 | + </configuration> |
| 242 | + </plugin> |
211 | 243 | </plugins> |
212 | 244 | </build> |
| 245 | + |
| 246 | + <profiles> |
| 247 | + <profile> |
| 248 | + <id>signing</id> |
| 249 | + <properties> |
| 250 | + <skipSigning>false</skipSigning> |
| 251 | + </properties> |
| 252 | + </profile> |
| 253 | + </profiles> |
213 | 254 | </project> |
0 commit comments