Skip to content

Commit 8c13219

Browse files
authored
Merge pull request #426 from MarcMil/fix-for-maven-central
Update README for release
2 parents 513b6a8 + 6d25873 commit 8c13219

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

README.MD

+30-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,36 @@ product implementations. We are happy to see that FlowDroid is now widely used i
1010

1111
You can either build FlowDroid on your own using Maven, or you can download a release from here on Github.
1212

13-
### Downloading The Release
13+
### Downloading The Release Via Maven
14+
15+
FlowDroid can now be found on <a href="https://mvnrepository.com/artifact/de.fraunhofer.sit.sse.flowdroid">Maven Central</a>.
16+
In order to use FlowDroid in your Maven build, include the following in your ```pom.xml``` file.
17+
We recommend using the latest and greatest version unless you have a specific
18+
issue that prevents you from doing so. In that case, please let us know (see contact below).
19+
```
20+
<dependencies>
21+
<dependency>
22+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
23+
<artifactId>soot-infoflow</artifactId>
24+
<version>2.10.0</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
28+
<artifactId>soot-infoflow-summaries</artifactId>
29+
<version>2.10.0</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
33+
<artifactId>soot-infoflow-android</artifactId>
34+
<version>2.10.0</version>
35+
</dependency>
36+
</dependencies>
37+
```
38+
39+
For a quick start with FlowDroid, look at "Using The Data Flow Tracker" below. If you only want to use the command-line tool,
40+
all you need is the "soot-infoflow-cmd-jar-with-dependencies.jar" file.
41+
42+
### Downloading The Release Via GitHub
1443

1544
The <a href="https://github.com/secure-software-engineering/FlowDroid/releases">Release Page</a> contains all pre-built JAR
1645
files for each release that we officially publish. We recommend using the latest and greatest version unless you have a specific

0 commit comments

Comments
 (0)