Skip to content

Commit edab4c5

Browse files
authored
Merge pull request #125 from tls-attacker/remoteRepository
changed pom to contain snapshot deployment information
2 parents 28fb94b + 7c6c4c0 commit edab4c5

File tree

4 files changed

+54
-4
lines changed

4 files changed

+54
-4
lines changed

TLS-Client-Scanner/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.rub.nds.tlsscanner</groupId>
66
<artifactId>TLS-Scanner</artifactId>
7-
<version>4.1.0</version>
7+
<version>4.1.0-SNAPSHOT</version>
88
</parent>
99
<name>TLS-Client-Scanner</name>
1010
<packaging>jar</packaging>

TLS-Scanner-Core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.rub.nds.tlsscanner</groupId>
66
<artifactId>TLS-Scanner</artifactId>
7-
<version>4.1.0</version>
7+
<version>4.1.0-SNAPSHOT</version>
88
</parent>
99
<packaging>jar</packaging>
1010
<artifactId>TLS-Scanner-Core</artifactId>

TLS-Server-Scanner/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.rub.nds.tlsscanner</groupId>
66
<artifactId>TLS-Scanner</artifactId>
7-
<version>4.1.0</version>
7+
<version>4.1.0-SNAPSHOT</version>
88
</parent>
99
<name>TLS-Server-Scanner</name>
1010
<packaging>jar</packaging>

pom.xml

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,53 @@
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>TLS-Scanner</artifactId>
55
<groupId>de.rub.nds.tlsscanner</groupId>
6-
<version>4.1.0</version>
6+
<version>4.1.0-SNAPSHOT</version>
77
<packaging>pom</packaging>
8+
<name>TLS-Scanner</name>
9+
<url>https://github.com/tls-attacker/TLS-Scanner</url>
10+
<description>TLS-Scanner is a tool created by the Chair for Network and Data Security from the Ruhr-University Bochum to assist pentesters and security researchers in the evaluation of TLS Server configurations.</description>
11+
12+
<licenses>
13+
<license>
14+
<name>Apache License, Version 2.0</name>
15+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
16+
<distribution>repo</distribution>
17+
</license>
18+
</licenses>
19+
20+
<distributionManagement>
21+
<snapshotRepository>
22+
<id>rub-nexus</id>
23+
<name>TLS-Attacker Internal Repository</name>
24+
<url>https://hydrogen.cloud.nds.rub.de/nexus/repository/maven-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/tls-attacker/TLS-Scanner.git</connection>
35+
<developerConnection>scm:git:ssh://github.com/tls-attacker/TLS-Scanner.git</developerConnection>
36+
<url>https://github.com/tls-attacker/TLS-Scanner/tree/master</url>
37+
</scm>
38+
39+
<developers>
40+
<developer>
41+
<id>ic0ns</id>
42+
<name>Robert Merget</name>
43+
<email>[email protected]</email>
44+
<url>http://www.nds.rub.de/</url>
45+
<organization>NDS</organization>
46+
<organizationUrl>http://www.nds.rub.de</organizationUrl>
47+
<roles>
48+
<role>Developer</role>
49+
</roles>
50+
</developer>
51+
</developers>
52+
853
<modules>
954
<module>TLS-Scanner-Core</module>
1055
<module>TLS-Server-Scanner</module>
@@ -281,6 +326,11 @@
281326
<autoReleaseAfterClose>false</autoReleaseAfterClose>
282327
</configuration>
283328
</plugin>
329+
<plugin>
330+
<groupId>org.apache.maven.plugins</groupId>
331+
<artifactId>maven-deploy-plugin</artifactId>
332+
<version>3.0.0-M1</version>
333+
</plugin>
284334
</plugins>
285335
</build>
286336
<properties>

0 commit comments

Comments
 (0)