|
6 | 6 | <version>1.17.0</version>
|
7 | 7 |
|
8 | 8 | <packaging>maven-plugin</packaging>
|
9 |
| - |
10 | 9 | <name>wetator-maven-plugin Maven Plugin</name>
|
11 |
| - |
12 | 10 | <description>Plugin to run Wetator tests with Maven. The Wetator homepage: http://www.wetator.org</description>
|
13 |
| - |
14 | 11 | <url>https://github.com/Wetator/wetator-maven-plugin</url>
|
15 |
| - |
16 | 12 | <licenses>
|
17 | 13 | <license>
|
18 | 14 | <name>Apache License, Version 2.0</name>
|
|
21 | 17 | <distribution>repo</distribution>
|
22 | 18 | </license>
|
23 | 19 | </licenses>
|
24 |
| - |
25 | 20 | <issueManagement>
|
26 | 21 | <url>https://github.com/Wetator/wetator-maven-plugin/issues</url>
|
27 | 22 | <system>GitHub Issues</system>
|
28 | 23 | </issueManagement>
|
29 |
| - |
30 | 24 | <scm>
|
31 | 25 | <connection>scm:git:https://github.com/Wetator/wetator-maven-plugin.git</connection>
|
32 | 26 | <developerConnection>scm:git:https://github.com/Wetator/wetator-maven-plugin.git</developerConnection>
|
33 | 27 | <url>https://github.com/Wetator/wetator-maven-plugin</url>
|
34 | 28 | </scm>
|
35 |
| - |
36 | 29 | <distributionManagement>
|
37 | 30 | <repository>
|
38 | 31 | <id>sonatype-nexus-staging</id>
|
39 | 32 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
40 | 33 | </repository>
|
41 | 34 | </distributionManagement>
|
42 | 35 |
|
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 |
| - |
71 | 36 | <properties>
|
72 | 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
73 | 38 | <maven.compiler.source>1.8</maven.compiler.source>
|
74 | 39 | <maven.compiler.target>1.8</maven.compiler.target>
|
| 40 | + <dependencycheck.version>6.5.0</dependencycheck.version> |
75 | 41 | </properties>
|
76 | 42 |
|
77 | 43 | <dependencies>
|
|
162 | 128 | </configuration>
|
163 | 129 | </plugin>
|
164 | 130 |
|
| 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 | + --> |
165 | 163 | </plugins>
|
166 | 164 | </build>
|
167 | 165 |
|
| 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 | + |
168 | 194 | </project>
|
0 commit comments