Skip to content

Commit d121cd9

Browse files
committed
Updated pom.xml to include correct version and configs
1 parent 196a4e9 commit d121cd9

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

TLS-Client-Scanner/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,17 @@
3030
<plugin>
3131
<groupId>org.apache.maven.plugins</groupId>
3232
<artifactId>maven-dependency-plugin</artifactId>
33+
<version>3.1.2</version>
3334
</plugin>
3435
<plugin>
3536
<groupId>org.apache.maven.plugins</groupId>
3637
<artifactId>maven-failsafe-plugin</artifactId>
38+
<version>3.0.0-M5</version>
3739
</plugin>
3840
<plugin>
3941
<groupId>org.apache.maven.plugins</groupId>
4042
<artifactId>maven-surefire-plugin</artifactId>
43+
<version>3.0.0-M5</version>
4144
</plugin>
4245
</plugins>
4346
</build>

TLS-Scanner-Core/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@
1313
<plugin>
1414
<groupId>org.apache.maven.plugins</groupId>
1515
<artifactId>maven-failsafe-plugin</artifactId>
16+
<version>3.0.0-M5</version>
1617
</plugin>
1718
<plugin>
1819
<groupId>org.apache.maven.plugins</groupId>
1920
<artifactId>maven-surefire-plugin</artifactId>
21+
<version>3.0.0-M5</version>
2022
</plugin>
2123
<plugin>
2224
<artifactId>maven-resources-plugin</artifactId>

TLS-Server-Scanner/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,17 @@
4141
<plugin>
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-dependency-plugin</artifactId>
44+
<version>3.1.2</version>
4445
</plugin>
4546
<plugin>
4647
<groupId>org.apache.maven.plugins</groupId>
4748
<artifactId>maven-failsafe-plugin</artifactId>
49+
<version>3.0.0-M5</version>
4850
</plugin>
4951
<plugin>
5052
<groupId>org.apache.maven.plugins</groupId>
5153
<artifactId>maven-surefire-plugin</artifactId>
54+
<version>3.0.0-M5</version>
5255
</plugin>
5356
</plugins>
5457
</build>

TLS-Server-Scanner/src/main/java/de/rub/nds/tlsscanner/serverscanner/config/ScannerConfig.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public class ScannerConfig extends TLSDelegateConfig {
3434
@Parameter(names = "-noColor", required = false, description = "If you use Windows or don't want colored text.")
3535
private boolean noColor = false;
3636

37-
3837
@Parameter(names = "-scanDetail", required = false, description = "How detailed do you want to scan?")
3938
private ScannerDetail scanDetail = ScannerDetail.NORMAL;
4039

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@
1111
<module>TLS-Client-Scanner</module>
1212
</modules>
1313
<dependencies>
14+
<dependency>
15+
<groupId>org.slf4j</groupId>
16+
<artifactId>slf4j-log4j12</artifactId>
17+
<version>1.7.30</version>
18+
</dependency>
19+
<dependency>
20+
<groupId>org.slf4j</groupId>
21+
<artifactId>slf4j-api</artifactId>
22+
<version>1.7.30</version>
23+
</dependency>
1424
<dependency>
1525
<groupId>de.rub.nds.tlsattacker</groupId>
1626
<artifactId>TLS-Core</artifactId>
@@ -192,6 +202,7 @@
192202
<plugin>
193203
<groupId>net.revelc.code</groupId>
194204
<artifactId>formatter-maven-plugin</artifactId>
205+
<version>0.5.2</version>
195206
<configuration>
196207
<configFile>${main.basedir}/maven-eclipse-codestyle.xml</configFile>
197208
<lineEnding>LF</lineEnding>

0 commit comments

Comments
 (0)