|
9 | 9 | <name>TLS-Attacker</name> |
10 | 10 | <url>https://github.com/RUB-NDS/TLS-Attacker</url> |
11 | 11 | <description>TLS-Attacker is a Java-based framework for analyzing TLS libraries. It is developed by the Ruhr University Bochum (http://nds.rub.de/) and the Hackmanit GmbH (http://hackmanit.de/). </description> |
| 12 | + |
| 13 | + <licenses> |
| 14 | + <license> |
| 15 | + <name>Apache License, Version 2.0</name> |
| 16 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 17 | + <distribution>repo</distribution> |
| 18 | + </license> |
| 19 | + </licenses> |
| 20 | + |
| 21 | + <distributionManagement> |
| 22 | + <snapshotRepository> |
| 23 | + <id>ossrh</id> |
| 24 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 25 | + </snapshotRepository> |
| 26 | + <repository> |
| 27 | + <id>ossrh</id> |
| 28 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 29 | + </repository> |
| 30 | + </distributionManagement> |
| 31 | + |
| 32 | + <!-- Information to version control system --> |
| 33 | + <scm> |
| 34 | + <connection>scm:git:git://github.com/RUB-NDS/TLS-Attacker.git</connection> |
| 35 | + <developerConnection>scm:git:ssh://github.com/RUB-NDS/TLS-Attacker.git</developerConnection> |
| 36 | + <url>https://github.com/RUB-NDS/TLS-Attacker/tree/master</url> |
| 37 | + </scm> |
| 38 | + |
12 | 39 | <developers> |
13 | 40 | <developer> |
14 | 41 | <id>jsomorovsky</id> |
|
251 | 278 | </execution> |
252 | 279 | </executions> |
253 | 280 | </plugin> |
| 281 | + <plugin> |
| 282 | + <groupId>org.apache.maven.plugins</groupId> |
| 283 | + <artifactId>maven-source-plugin</artifactId> |
| 284 | + <version>3.0.1</version> |
| 285 | + <executions> |
| 286 | + <execution> |
| 287 | + <id>attach-sources</id> |
| 288 | + <goals> |
| 289 | + <goal>jar-no-fork</goal> |
| 290 | + </goals> |
| 291 | + </execution> |
| 292 | + </executions> |
| 293 | + </plugin> |
| 294 | + <plugin> |
| 295 | + <groupId>org.apache.maven.plugins</groupId> |
| 296 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 297 | + <version>2.10.4</version> |
| 298 | + <executions> |
| 299 | + <execution> |
| 300 | + <id>attach-javadocs</id> |
| 301 | + <goals> |
| 302 | + <goal>jar</goal> |
| 303 | + </goals> |
| 304 | + </execution> |
| 305 | + </executions> |
| 306 | + </plugin> |
| 307 | + <plugin> |
| 308 | + <groupId>org.apache.maven.plugins</groupId> |
| 309 | + <artifactId>maven-gpg-plugin</artifactId> |
| 310 | + <version>1.6</version> |
| 311 | + <executions> |
| 312 | + <execution> |
| 313 | + <id>sign-artifacts</id> |
| 314 | + <phase>verify</phase> |
| 315 | + <goals> |
| 316 | + <goal>sign</goal> |
| 317 | + </goals> |
| 318 | + </execution> |
| 319 | + </executions> |
| 320 | + </plugin> |
| 321 | + <plugin> |
| 322 | + <groupId>org.sonatype.plugins</groupId> |
| 323 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 324 | + <version>1.6.8</version> |
| 325 | + <extensions>true</extensions> |
| 326 | + <configuration> |
| 327 | + <serverId>ossrh</serverId> |
| 328 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 329 | + <!-- deploy with the following command: mvn nexus-staging:release --> |
| 330 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 331 | + </configuration> |
| 332 | + </plugin> |
254 | 333 | </plugins> |
255 | 334 | </build> |
256 | 335 | <reporting> |
|
0 commit comments