|
5 | 5 | <groupId>com.webfuzzing</groupId> |
6 | 6 | <artifactId>commons</artifactId> |
7 | 7 |
|
8 | | - <version>0.0.1-SNAPSHOT</version> |
| 8 | + <version>0.0.1</version> |
9 | 9 |
|
10 | 10 | <inceptionYear>2024</inceptionYear> |
11 | 11 | <name>WFC</name> |
12 | 12 | <description>Web Fuzzing Commons: A Set of Utilities for Fuzzing Web Applications</description> |
13 | 13 | <url>webfuzzing.com</url> |
14 | 14 | <packaging>jar</packaging> |
15 | 15 |
|
| 16 | + <issueManagement> |
| 17 | + <system>Github</system> |
| 18 | + <url>https://github.com/WebFuzzing/commons/issues</url> |
| 19 | + </issueManagement> |
| 20 | + |
| 21 | + <scm> |
| 22 | + <connection>scm:git:https://github.com/WebFuzzing/commons.git</connection> |
| 23 | + <developerConnection>scm:git:https://github.com/WebFuzzing/commons.git</developerConnection> |
| 24 | + <url>https://github.com/WebFuzzing/commons/tree/master</url> |
| 25 | + </scm> |
| 26 | + |
| 27 | + <licenses> |
| 28 | + <license> |
| 29 | + <name>Apache License, Version 2.0</name> |
| 30 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 31 | + <distribution>repo</distribution> |
| 32 | + </license> |
| 33 | + </licenses> |
| 34 | + |
| 35 | + <developers> |
| 36 | + <developer> |
| 37 | + <id>arcuri82</id> |
| 38 | + <name>Andrea Arcuri</name> |
| 39 | + |
| 40 | + <url>https://github.com/WebFuzzing</url> |
| 41 | + <timezone>2</timezone> |
| 42 | + <roles> |
| 43 | + <role>Architect/Developer</role> |
| 44 | + </roles> |
| 45 | + </developer> |
| 46 | + </developers> |
| 47 | + |
16 | 48 | <properties> |
17 | 49 | <java.version>1.8</java.version> |
18 | 50 | <junit.jupiter.version>5.7.2</junit.jupiter.version> |
|
179 | 211 | </execution> |
180 | 212 | </executions> |
181 | 213 | </plugin> |
| 214 | + <plugin> |
| 215 | + <groupId>org.apache.maven.plugins</groupId> |
| 216 | + <artifactId>maven-source-plugin</artifactId> |
| 217 | + <version>3.2.0</version> |
| 218 | + <executions> |
| 219 | + <execution> |
| 220 | + <id>create-sources</id> |
| 221 | + <phase>verify</phase> |
| 222 | + <goals> |
| 223 | + <goal>jar</goal> |
| 224 | + </goals> |
| 225 | + </execution> |
| 226 | + </executions> |
| 227 | + </plugin> |
| 228 | + <plugin> |
| 229 | + <groupId>org.apache.maven.plugins</groupId> |
| 230 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 231 | + <version>3.1.1</version> |
| 232 | + <configuration> |
| 233 | + <source>8</source> |
| 234 | + </configuration> |
| 235 | + <executions> |
| 236 | + <execution> |
| 237 | + <id>create-javadocs</id> |
| 238 | + <phase>verify</phase> |
| 239 | + <goals> |
| 240 | + <goal>jar</goal> |
| 241 | + </goals> |
| 242 | + </execution> |
| 243 | + </executions> |
| 244 | + </plugin> |
182 | 245 | </plugins> |
183 | 246 | </build> |
184 | 247 |
|
|
0 commit comments