Skip to content

Commit b41eb5f

Browse files
committed
Update plugin description
1 parent c73a721 commit b41eb5f

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

swan_assist/build.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ plugins {
44
}
55

66
group 'de.fraunhofer'
7-
version '1.0-SNAPSHOT'
7+
version '1.1'
88

99
sourceCompatibility = 1.8
1010

1111
repositories {
1212
mavenCentral()
13+
mavenLocal()
1314
}
1415

1516
dependencies {
1617
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
17-
compile group:'de.upb.cs.swt', name: 'swan_core', version: '1.3.0'
18+
compile group:'de.upb.cs.swt', name: 'swan_core', version: '1.4.0'
1819
compile group: 'ca.mcgill.sable', name: 'soot', version: '3.3.0'
1920
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.5'
2021
compile group: 'org.slf4j', name: 'slf4j-simple', version : '1.7.5'
21-
testCompile group: 'junit', name: 'junit', version: '4.12'
2222
}
2323

2424
intellij {
@@ -27,7 +27,8 @@ intellij {
2727
}
2828

2929
patchPluginXml {
30-
changeNotes """
31-
Add change notes here.<br>
32-
<em>most HTML tags may be used</em>"""
30+
changeNotes "Initial release of the SWAN_Assist plugin: <br>add, delete and update methods of interest list" +
31+
"<br>- suggest methods" +
32+
"<br>- filter list" +
33+
"<br>- import and export configuration file"
3334
}

swan_assist/src/main/resources/META-INF/plugin.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,20 @@
33
<name>SWAN_Assist</name>
44
<vendor email="support@iem.fraunhofer.de" url="https://www.iem.fraunhofer.de/">Fraunhofer IEM</vendor>
55

6-
<description>IDE support for the identification of configured methods for static analyses</description>
6+
<description> SWAN_Assist provides a GUI support for SWAN -a machine-learning approach for detection of
7+
methods of interest for security in Java libraries. The user is able to interact with the learning
8+
process by giving feedback on the methods of interest. The tool helps users that write static analyses
9+
to create list of security methods for weakness detection for their specific Java libraries.
10+
Users can manually inspect the proper usage of the methods detected by SWAN.
11+
</description>
712

813
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
914
on how to target different products -->
1015
<!-- uncomment to enable plugin in all products
1116
<depends>com.intellij.modules.lang</depends>
1217
-->
1318

14-
<idea-version since-build="192"/>
19+
<idea-version since-build="181"/>
1520

1621
<extensions defaultExtensionNs="com.intellij">
1722
<codeInsight.lineMarkerProvider language="JAVA"

0 commit comments

Comments
 (0)