Skip to content

Commit 4925fd0

Browse files
committed
Bump SWAN from v3.3.0 to v3.3.1
1 parent e212658 commit 4925fd0

File tree

7 files changed

+110
-88
lines changed

7 files changed

+110
-88
lines changed

coverage-doclet/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>de.fraunhofer.iem</groupId>
99
<artifactId>swan</artifactId>
10-
<version>3.3.0</version>
10+
<version>3.3.1</version>
1111
</parent>
1212

1313
<artifactId>coverage-doclet</artifactId>

dev-assist/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ repositories {
1313

1414
dependencies {
1515
implementation 'com.googlecode.json-simple:json-simple:1.1'
16-
implementation 'de.fraunhofer.iem:swan:3.2.2'
16+
implementation 'de.fraunhofer.iem:swan:3.3.1'
17+
implementation 'de.fraunhofer.iem:swan-cmd:3.3.1'
1718
implementation 'org.slf4j:slf4j-api:1.7.29'
1819
implementation 'org.slf4j:slf4j-simple:1.7.29'
1920
implementation 'org.apache.commons:commons-lang3:3.0'

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>de.fraunhofer.iem</groupId>
88
<artifactId>swan</artifactId>
99
<packaging>pom</packaging>
10-
<version>3.3.0</version>
10+
<version>3.3.1</version>
1111
<name>SWAN</name>
1212

1313
<description>SWAN uses fully automated machine-learning approaches to classify Java methods into security-relevant
@@ -65,9 +65,10 @@
6565
</properties>
6666

6767
<modules>
68-
<module>swan-cmd</module>
6968
<module>training-data-jars</module>
7069
<module>coverage-doclet</module>
7170
<module>xml-doclet</module>
71+
<module>ml2plan-model-selection</module>
72+
<module>swan-cmd</module>
7273
</modules>
7374
</project>

swan-cmd/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>de.fraunhofer.iem</groupId>
88
<artifactId>swan</artifactId>
9-
<version>3.3.0</version>
9+
<version>3.3.1</version>
1010
</parent>
1111

1212
<artifactId>swan-cmd</artifactId>

swan-cmd/src/main/java/de/fraunhofer/iem/swan/cli/CliRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import java.util.concurrent.Callable;
99

1010
@CommandLine.Command(name = "swan", mixinStandardHelpOptions = true,
11-
version = "swan-cmd-3.3.0", description = "Detects security-relevant methods using multi-label machine learning")
11+
version = "swan-cmd-3.3.1", description = "Detects security-relevant methods using multi-label machine learning")
1212
public class CliRunner implements Callable<Integer> {
1313

1414
@CommandLine.Option(names = {"-test", "--test-data"}, description = {"Path of test JARs or class files"})

0 commit comments

Comments
 (0)