Skip to content

Commit

Permalink
Update README.md with instruction to use Doop as a library (Gradle, M…
Browse files Browse the repository at this point in the history
…aven)
  • Loading branch information
Anastasios Antoniadis committed May 17, 2024
1 parent 7201394 commit ffa680e
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,48 @@ Support:

(b) [Discord server](https://discord.gg/4q7rj5s)

## Using Doop as a Library

Add the JitPack repository to your root build.gradle or pom.xml

### build.gradle configuration

```
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
```

### pom.xml configuration
```
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
```
### Add the dependency in build.gradle
```
dependencies {
implementation 'com.github.plast-lab:Doop:4:24:13'
}
```

### Add the dependency in pom.xml

```
<dependency>
<groupId>com.github.plast-lab</groupId>
<artifactId>Doop</artifactId>
<version>Tag</version>
</dependency>
```

## Benchmarks & Platform Lib

For a variety of benchmarks, you could clone (or download) the [doop-benchmarks](https://bitbucket.org/yanniss/doop-benchmarks) repository.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=4.24.11
version=4.24.13

0 comments on commit ffa680e

Please sign in to comment.