@@ -10,7 +10,36 @@ product implementations. We are happy to see that FlowDroid is now widely used i
10
10
11
11
You can either build FlowDroid on your own using Maven, or you can download a release from here on Github.
12
12
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
14
43
15
44
The <a href =" https://github.com/secure-software-engineering/FlowDroid/releases " >Release Page</a > contains all pre-built JAR
16
45
files for each release that we officially publish. We recommend using the latest and greatest version unless you have a specific
0 commit comments