|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>de.tud.sse</groupId> |
| 5 | + <groupId>de.fraunhofer.sit.sse.flowdroid</groupId> |
6 | 6 | <artifactId>soot-infoflow-cmd</artifactId> |
7 | 7 | <name>FlowDroid Command Line Util</name> |
8 | | - <version>2.10.0-SNAPSHOT</version> |
| 8 | + <version>2.10.0</version> |
9 | 9 | <description>Command-line utility for running FlowDroid</description> |
| 10 | + <url>https://github.com/secure-software-engineering/FlowDroid</url> |
10 | 11 |
|
11 | 12 | <properties> |
12 | 13 | <maven.compiler.source>1.7</maven.compiler.source> |
|
20 | 21 | <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
21 | 22 | <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version> |
22 | 23 | </properties> |
23 | | - |
| 24 | + |
| 25 | + <scm> |
| 26 | + <connection>scm:git:git@github.com:secure-software-engineering/FlowDroid.git</connection> |
| 27 | + <developerConnection>scm:git:git@github.com:secure-software-engineering/FlowDroid.git</developerConnection> |
| 28 | + <url>https://github.com/secure-software-engineering/FlowDroid/tree/develop</url> |
| 29 | + </scm> |
| 30 | + |
24 | 31 | <organization> |
25 | 32 | <name>Fraunhofer SIT</name> |
26 | 33 | <url>https://www.sit.fraunhofer.de/</url> |
|
130 | 137 | </plugins> |
131 | 138 | </build> |
132 | 139 |
|
| 140 | + <profiles> |
| 141 | + <profile> |
| 142 | + <id>sign-artifacts</id> |
| 143 | + <build> |
| 144 | + <plugins> |
| 145 | + <plugin> |
| 146 | + <groupId>org.apache.maven.plugins</groupId> |
| 147 | + <artifactId>maven-gpg-plugin</artifactId> |
| 148 | + <version>3.0.1</version> |
| 149 | + <executions> |
| 150 | + <execution> |
| 151 | + <id>sign-artifacts</id> |
| 152 | + <phase>verify</phase> |
| 153 | + <goals> |
| 154 | + <goal>sign</goal> |
| 155 | + </goals> |
| 156 | + </execution> |
| 157 | + </executions> |
| 158 | + </plugin> |
| 159 | + </plugins> |
| 160 | + </build> |
| 161 | + </profile> |
| 162 | + </profiles> |
| 163 | + |
133 | 164 | <dependencies> |
134 | 165 | <dependency> |
135 | | - <groupId>de.tud.sse</groupId> |
| 166 | + <groupId>de.fraunhofer.sit.sse.flowdroid</groupId> |
136 | 167 | <artifactId>soot-infoflow-android</artifactId> |
137 | | - <version>2.10.0-SNAPSHOT</version> |
| 168 | + <version>2.10.0</version> |
138 | 169 | </dependency> |
139 | 170 | <dependency> |
140 | | - <groupId>de.tud.sse</groupId> |
| 171 | + <groupId>de.fraunhofer.sit.sse.flowdroid</groupId> |
141 | 172 | <artifactId>soot-infoflow-summaries</artifactId> |
142 | | - <version>2.10.0-SNAPSHOT</version> |
| 173 | + <version>2.10.0</version> |
143 | 174 | </dependency> |
144 | 175 | <dependency> |
145 | 176 | <groupId>commons-cli</groupId> |
|
156 | 187 | <optional>true</optional> |
157 | 188 | </dependency> |
158 | 189 | </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> |
172 | 190 | </project> |
0 commit comments