File tree 2 files changed +43
-1
lines changed
2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,48 @@ Support:
40
40
41
41
(b) [ Discord server] ( https://discord.gg/4q7rj5s )
42
42
43
+ ## Using Doop as a Library
44
+
45
+ Add the JitPack repository to your root build.gradle or pom.xml
46
+
47
+ ### build.gradle configuration
48
+
49
+ ```
50
+ dependencyResolutionManagement {
51
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
52
+ repositories {
53
+ mavenCentral()
54
+ maven { url 'https://jitpack.io' }
55
+ }
56
+ }
57
+ ```
58
+
59
+ ### pom.xml configuration
60
+ ```
61
+ <repositories>
62
+ <repository>
63
+ <id>jitpack.io</id>
64
+ <url>https://jitpack.io</url>
65
+ </repository>
66
+ </repositories>
67
+ ```
68
+ ### Add the dependency in build.gradle
69
+ ```
70
+ dependencies {
71
+ implementation 'com.github.plast-lab:Doop:4:24:13'
72
+ }
73
+ ```
74
+
75
+ ### Add the dependency in pom.xml
76
+
77
+ ```
78
+ <dependency>
79
+ <groupId>com.github.plast-lab</groupId>
80
+ <artifactId>Doop</artifactId>
81
+ <version>Tag</version>
82
+ </dependency>
83
+ ```
84
+
43
85
## Benchmarks & Platform Lib
44
86
45
87
For a variety of benchmarks, you could clone (or download) the [ doop-benchmarks] ( https://bitbucket.org/yanniss/doop-benchmarks ) repository.
Original file line number Diff line number Diff line change 1
- version =4.24.11
1
+ version =4.24.13
You can’t perform that action at this time.
0 commit comments