Skip to content

Commit 4d0156b

Browse files
committed
Version 1.17.0
use Wetator 1.17.0 lib updates
1 parent 56de8a9 commit 4d0156b

File tree

1 file changed

+61
-35
lines changed

1 file changed

+61
-35
lines changed

pom.xml

Lines changed: 61 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,9 @@
66
<version>1.17.0</version>
77

88
<packaging>maven-plugin</packaging>
9-
109
<name>wetator-maven-plugin Maven Plugin</name>
11-
1210
<description>Plugin to run Wetator tests with Maven. The Wetator homepage: http://www.wetator.org</description>
13-
1411
<url>https://github.com/Wetator/wetator-maven-plugin</url>
15-
1612
<licenses>
1713
<license>
1814
<name>Apache License, Version 2.0</name>
@@ -21,57 +17,27 @@
2117
<distribution>repo</distribution>
2218
</license>
2319
</licenses>
24-
2520
<issueManagement>
2621
<url>https://github.com/Wetator/wetator-maven-plugin/issues</url>
2722
<system>GitHub Issues</system>
2823
</issueManagement>
29-
3024
<scm>
3125
<connection>scm:git:https://github.com/Wetator/wetator-maven-plugin.git</connection>
3226
<developerConnection>scm:git:https://github.com/Wetator/wetator-maven-plugin.git</developerConnection>
3327
<url>https://github.com/Wetator/wetator-maven-plugin</url>
3428
</scm>
35-
3629
<distributionManagement>
3730
<repository>
3831
<id>sonatype-nexus-staging</id>
3932
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
4033
</repository>
4134
</distributionManagement>
4235

43-
<developers>
44-
<developer>
45-
<id>Treppenhouse</id>
46-
<name>Malte Mauelshagen</name>
47-
<url>https://github.com/Treppenhouse</url>
48-
</developer>
49-
<developer>
50-
<id>rbri</id>
51-
<name>Ronald Brill</name>
52-
<url>https://github.com/rbri</url>
53-
</developer>
54-
<developer>
55-
<id>cheffe</id>
56-
<name>Christian Effertz</name>
57-
<url>https://github.com/cheffe</url>
58-
</developer>
59-
</developers>
60-
61-
<contributors>
62-
<contributor>
63-
<name>Michael Stähler</name>
64-
<url>https://github.com/fred4jupiter</url>
65-
<roles>
66-
<role>original author</role>
67-
</roles>
68-
</contributor>
69-
</contributors>
70-
7136
<properties>
7237
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7338
<maven.compiler.source>1.8</maven.compiler.source>
7439
<maven.compiler.target>1.8</maven.compiler.target>
40+
<dependencycheck.version>6.5.0</dependencycheck.version>
7541
</properties>
7642

7743
<dependencies>
@@ -162,7 +128,67 @@
162128
</configuration>
163129
</plugin>
164130

131+
<plugin>
132+
<groupId>org.apache.maven.plugins</groupId>
133+
<artifactId>maven-gpg-plugin</artifactId>
134+
<version>3.0.1</version>
135+
<executions>
136+
<execution>
137+
<phase>verify</phase>
138+
<goals>
139+
<goal>sign</goal>
140+
</goals>
141+
</execution>
142+
</executions>
143+
</plugin>
144+
145+
<!--
146+
<plugin>
147+
<groupId>org.owasp</groupId>
148+
<artifactId>dependency-check-maven</artifactId>
149+
<version>${dependencycheck.version}</version>
150+
<configuration>
151+
<suppressionFiles>owasp-suppressions.xml</suppressionFiles>
152+
<failBuildOnCVSS>0</failBuildOnCVSS>
153+
</configuration>
154+
<executions>
155+
<execution>
156+
<goals>
157+
<goal>check</goal>
158+
</goals>
159+
</execution>
160+
</executions>
161+
</plugin>
162+
-->
165163
</plugins>
166164
</build>
167165

166+
<developers>
167+
<developer>
168+
<id>Treppenhouse</id>
169+
<name>Malte Mauelshagen</name>
170+
<url>https://github.com/Treppenhouse</url>
171+
</developer>
172+
<developer>
173+
<id>rbri</id>
174+
<name>Ronald Brill</name>
175+
<url>https://github.com/rbri</url>
176+
</developer>
177+
<developer>
178+
<id>cheffe</id>
179+
<name>Christian Effertz</name>
180+
<url>https://github.com/cheffe</url>
181+
</developer>
182+
</developers>
183+
184+
<contributors>
185+
<contributor>
186+
<name>Michael Stähler</name>
187+
<url>https://github.com/fred4jupiter</url>
188+
<roles>
189+
<role>original author</role>
190+
</roles>
191+
</contributor>
192+
</contributors>
193+
168194
</project>

0 commit comments

Comments
 (0)