Skip to content

Commit 5d8e6c9

Browse files
committed
Prepare for release
1 parent 2c4057a commit 5d8e6c9

File tree

6 files changed

+44
-207
lines changed

6 files changed

+44
-207
lines changed

pom.xml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
77
<artifactId>parent</artifactId>
8-
<version>2.10.0-SNAPSHOT</version>
8+
<version>2.10.0</version>
99
<name>FlowDroid Parent Module</name>
1010
<packaging>pom</packaging>
1111

@@ -50,4 +50,27 @@
5050
</dependency>
5151
</dependencies>
5252
</dependencyManagement>
53+
<profiles>
54+
<profile>
55+
<id>sign-artifacts</id>
56+
<build>
57+
<plugins>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-gpg-plugin</artifactId>
61+
<version>3.0.1</version>
62+
<executions>
63+
<execution>
64+
<id>sign-artifacts</id>
65+
<phase>verify</phase>
66+
<goals>
67+
<goal>sign</goal>
68+
</goals>
69+
</execution>
70+
</executions>
71+
</plugin>
72+
</plugins>
73+
</build>
74+
</profile>
75+
</profiles>
5376
</project>

soot-infoflow-android/pom.xml

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>de.tud.sse</groupId>
5+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
66
<artifactId>soot-infoflow-android</artifactId>
77
<name>soot-infoflow-android</name>
8-
<version>2.10.0-SNAPSHOT</version>
8+
<version>2.10.0</version>
99
<description>Android-specific components of FlowDroid</description>
1010
<url>https://github.com/secure-software-engineering/FlowDroid</url>
1111

@@ -133,9 +133,9 @@
133133
<version>1.7.32</version>
134134
</dependency>
135135
<dependency>
136-
<groupId>de.tud.sse</groupId>
136+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
137137
<artifactId>soot-infoflow</artifactId>
138-
<version>2.10.0-SNAPSHOT</version>
138+
<version>2.10.0</version>
139139
</dependency>
140140
<dependency>
141141
<groupId>junit</groupId>
@@ -154,11 +154,6 @@
154154
<artifactId>axml</artifactId>
155155
<version>2.1.1</version>
156156
</dependency>
157-
<dependency>
158-
<groupId>ca.mcgill.sable</groupId>
159-
<artifactId>axmlprinter</artifactId>
160-
<version>2016-07-27</version>
161-
</dependency>
162157
<!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java -->
163158
<dependency>
164159
<groupId>com.google.protobuf</groupId>
@@ -171,17 +166,4 @@
171166
<version>5.2.1</version>
172167
</dependency>
173168
</dependencies>
174-
175-
<repositories>
176-
<repository>
177-
<id>soot-snapshot</id>
178-
<name>Soot snapshot server</name>
179-
<url>https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-snapshot/</url>
180-
</repository>
181-
<repository>
182-
<id>soot-release</id>
183-
<name>Soot release server</name>
184-
<url>https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-release/</url>
185-
</repository>
186-
</repositories>
187169
</project>

soot-infoflow-android/src/soot/jimple/infoflow/android/axml/parsers/AXMLPrinter2Parser.java

Lines changed: 0 additions & 125 deletions
This file was deleted.

soot-infoflow-cmd/pom.xml

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>de.tud.sse</groupId>
5+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
66
<artifactId>soot-infoflow-cmd</artifactId>
77
<name>FlowDroid Command Line Util</name>
8-
<version>2.10.0-SNAPSHOT</version>
8+
<version>2.10.0</version>
99
<description>Command-line utility for running FlowDroid</description>
1010

1111
<properties>
@@ -132,14 +132,14 @@
132132

133133
<dependencies>
134134
<dependency>
135-
<groupId>de.tud.sse</groupId>
135+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
136136
<artifactId>soot-infoflow-android</artifactId>
137-
<version>2.10.0-SNAPSHOT</version>
137+
<version>2.10.0</version>
138138
</dependency>
139139
<dependency>
140-
<groupId>de.tud.sse</groupId>
140+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
141141
<artifactId>soot-infoflow-summaries</artifactId>
142-
<version>2.10.0-SNAPSHOT</version>
142+
<version>2.10.0</version>
143143
</dependency>
144144
<dependency>
145145
<groupId>commons-cli</groupId>
@@ -156,17 +156,4 @@
156156
<optional>true</optional>
157157
</dependency>
158158
</dependencies>
159-
160-
<repositories>
161-
<repository>
162-
<id>soot-snapshot</id>
163-
<name>Soot snapshot server</name>
164-
<url>https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-snapshot/</url>
165-
</repository>
166-
<repository>
167-
<id>soot-release</id>
168-
<name>Soot release server</name>
169-
<url>https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-release/</url>
170-
</repository>
171-
</repositories>
172159
</project>

soot-infoflow-summaries/pom.xml

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>de.tud.sse</groupId>
5+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
66
<artifactId>soot-infoflow-summaries</artifactId>
77
<name>StubDroid</name>
8-
<version>2.10.0-SNAPSHOT</version>
8+
<version>2.10.0</version>
99
<description>Data Flow Summaries for FlowDroid</description>
1010

1111
<properties>
@@ -146,9 +146,9 @@
146146

147147
<dependencies>
148148
<dependency>
149-
<groupId>de.tud.sse</groupId>
149+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
150150
<artifactId>soot-infoflow</artifactId>
151-
<version>2.10.0-SNAPSHOT</version>
151+
<version>2.10.0</version>
152152

153153
<exclusions>
154154
<exclusion>
@@ -162,9 +162,9 @@
162162
</exclusions>
163163
</dependency>
164164
<dependency>
165-
<groupId>de.tud.sse</groupId>
165+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
166166
<artifactId>soot-infoflow</artifactId>
167-
<version>2.10.0-SNAPSHOT</version>
167+
<version>2.10.0</version>
168168
<type>test-jar</type>
169169
<scope>test</scope>
170170

@@ -203,17 +203,4 @@
203203
<version>1.4</version>
204204
</dependency>
205205
</dependencies>
206-
207-
<repositories>
208-
<repository>
209-
<id>soot-snapshot</id>
210-
<name>Soot snapshot server</name>
211-
<url>https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-snapshot/</url>
212-
</repository>
213-
<repository>
214-
<id>soot-release</id>
215-
<name>Soot release server</name>
216-
<url>https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-release/</url>
217-
</repository>
218-
</repositories>
219206
</project>

soot-infoflow/pom.xml

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>de.tud.sse</groupId>
6+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
77
<artifactId>soot-infoflow</artifactId>
88
<name>soot-infoflow</name>
9-
<version>2.10.0-SNAPSHOT</version>
9+
<version>2.10.0</version>
1010
<description>Soot extending data flow tracking components for Java</description>
1111
<url>https://github.com/secure-software-engineering/FlowDroid</url>
1212

@@ -150,7 +150,7 @@
150150
<dependency>
151151
<groupId>org.soot-oss</groupId>
152152
<artifactId>soot</artifactId>
153-
<version>4.3.0-SNAPSHOT</version>
153+
<version>4.3.0</version>
154154
</dependency>
155155
<dependency>
156156
<groupId>junit</groupId>
@@ -182,24 +182,7 @@
182182
</dependency>
183183
</dependencies>
184184

185-
<repositories>
186-
<repository>
187-
<id>sonatype-snapshot</id>
188-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
189-
<releases>
190-
<enabled>false</enabled>
191-
</releases>
192-
<snapshots>
193-
<enabled>true</enabled>
194-
</snapshots>
195-
</repository>
196-
</repositories>
197-
<distributionManagement>
198-
<snapshotRepository>
199-
<id>ossrh</id>
200-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
201-
</snapshotRepository>
202-
</distributionManagement>
185+
203186
<profiles>
204187
<profile>
205188
<id>deploy</id>

0 commit comments

Comments
 (0)