Skip to content

Commit 87f4502

Browse files
committed
release
1 parent b87803e commit 87f4502

File tree

5 files changed

+29
-25
lines changed

5 files changed

+29
-25
lines changed

pom.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
55
<artifactId>parent</artifactId>
6-
<version>2.11.0-SNAPSHOT</version>
6+
<version>2.11.0</version>
77
<name>FlowDroid Parent Module</name>
88
<packaging>pom</packaging>
99

@@ -13,21 +13,25 @@
1313
<maven.compiler.source>1.8</maven.compiler.source>
1414
<maven.compiler.target>1.8</maven.compiler.target>
1515

16-
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
16+
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
1717
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
1818
<maven-nexus-staging-plugin.version>1.6.13</maven-nexus-staging-plugin.version>
1919
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
2020
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
2121
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
2222
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
2323
<maven-assembly-plugin.version>3.4.2</maven-assembly-plugin.version>
24+
<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
2425

25-
<slf4j.version>2.0.3</slf4j.version>
26+
<slf4j.version>2.0.6</slf4j.version>
2627
<log4j.version>2.19.0</log4j.version>
2728
<junit.version>4.13.2</junit.version>
2829
<guava.version>31.1-jre</guava.version>
30+
<hamcrest.version>2.2</hamcrest.version>
2931

30-
<soot.version>4.4.0-SNAPSHOT</soot.version>
32+
<apache-commons-cli.version>1.5.0</apache-commons-cli.version>
33+
34+
<soot.version>4.4.0</soot.version>
3135
</properties>
3236

3337
<developers>
@@ -95,7 +99,7 @@
9599
<plugin>
96100
<groupId>org.apache.maven.plugins</groupId>
97101
<artifactId>maven-deploy-plugin</artifactId>
98-
<version>2.4</version>
102+
<version>${maven-deploy-plugin.version}</version>
99103
<configuration>
100104
<skip>true</skip>
101105
</configuration>

soot-infoflow-android/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
1212
<artifactId>parent</artifactId>
13-
<version>2.11.0-SNAPSHOT</version>
13+
<version>2.11.0</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616

@@ -135,7 +135,7 @@
135135
<dependency>
136136
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
137137
<artifactId>soot-infoflow</artifactId>
138-
<version>2.11.0-SNAPSHOT</version>
138+
<version>2.11.0</version>
139139
</dependency>
140140
<dependency>
141141
<groupId>junit</groupId>
@@ -145,8 +145,8 @@
145145
</dependency>
146146
<dependency>
147147
<groupId>org.hamcrest</groupId>
148-
<artifactId>hamcrest-core</artifactId>
149-
<version>2.2</version>
148+
<artifactId>hamcrest</artifactId>
149+
<version>${hamcrest.version}</version>
150150
<scope>test</scope>
151151
</dependency>
152152
<dependency>
@@ -157,12 +157,12 @@
157157
<dependency>
158158
<groupId>com.google.protobuf</groupId>
159159
<artifactId>protobuf-java</artifactId>
160-
<version>3.21.11</version>
160+
<version>3.21.12</version>
161161
</dependency>
162162
<dependency>
163163
<groupId>com.esotericsoftware</groupId>
164164
<artifactId>kryo</artifactId>
165-
<version>5.3.0</version>
165+
<version>5.4.0</version>
166166
</dependency>
167167
</dependencies>
168168
</project>

soot-infoflow-cmd/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
1212
<artifactId>parent</artifactId>
13-
<version>2.11.0-SNAPSHOT</version>
13+
<version>2.11.0</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616

@@ -129,17 +129,17 @@
129129
<dependency>
130130
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
131131
<artifactId>soot-infoflow-android</artifactId>
132-
<version>2.11.0-SNAPSHOT</version>
132+
<version>2.11.0</version>
133133
</dependency>
134134
<dependency>
135135
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
136136
<artifactId>soot-infoflow-summaries</artifactId>
137-
<version>2.11.0-SNAPSHOT</version>
137+
<version>2.11.0</version>
138138
</dependency>
139139
<dependency>
140140
<groupId>commons-cli</groupId>
141141
<artifactId>commons-cli</artifactId>
142-
<version>1.4</version>
142+
<version>${apache-commons-cli.version}</version>
143143
</dependency>
144144

145145
<!-- We need this dependency to have output on the command

soot-infoflow-summaries/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
1212
<artifactId>parent</artifactId>
13-
<version>2.11.0-SNAPSHOT</version>
13+
<version>2.11.0</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616

@@ -142,7 +142,7 @@
142142
<dependency>
143143
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
144144
<artifactId>soot-infoflow</artifactId>
145-
<version>2.11.0-SNAPSHOT</version>
145+
<version>2.11.0</version>
146146

147147
<exclusions>
148148
<exclusion>
@@ -158,7 +158,7 @@
158158
<dependency>
159159
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
160160
<artifactId>soot-infoflow</artifactId>
161-
<version>2.11.0-SNAPSHOT</version>
161+
<version>2.11.0</version>
162162
<type>test-jar</type>
163163
<scope>test</scope>
164164

@@ -181,8 +181,8 @@
181181
</dependency>
182182
<dependency>
183183
<groupId>org.hamcrest</groupId>
184-
<artifactId>hamcrest-core</artifactId>
185-
<version>1.3</version>
184+
<artifactId>hamcrest</artifactId>
185+
<version>${hamcrest.version}</version>
186186
<scope>test</scope>
187187
</dependency>
188188
<dependency>
@@ -193,7 +193,7 @@
193193
<dependency>
194194
<groupId>commons-cli</groupId>
195195
<artifactId>commons-cli</artifactId>
196-
<version>1.4</version>
196+
<version>${apache-commons-cli.version}</version>
197197
</dependency>
198198
</dependencies>
199199
</project>

soot-infoflow/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
1313
<artifactId>parent</artifactId>
14-
<version>2.11.0-SNAPSHOT</version>
14+
<version>2.11.0</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717

@@ -117,7 +117,7 @@
117117
<dependency>
118118
<groupId>de.upb.cs.swt</groupId>
119119
<artifactId>heros</artifactId>
120-
<version>1.2.1</version>
120+
<version>1.2.3</version>
121121
</dependency>
122122
<dependency>
123123
<groupId>org.soot-oss</groupId>
@@ -132,8 +132,8 @@
132132
</dependency>
133133
<dependency>
134134
<groupId>org.hamcrest</groupId>
135-
<artifactId>hamcrest-core</artifactId>
136-
<version>2.2</version>
135+
<artifactId>hamcrest</artifactId>
136+
<version>${hamcrest.version}</version>
137137
<scope>test</scope>
138138
</dependency>
139139
<dependency>

0 commit comments

Comments
 (0)