Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Zelaux committed Oct 1, 2023
1 parent 9a1ad5e commit ebd7e08
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,18 @@ Adds useful things that's extends [Arc](https://github.com/Anuken/Arc)

```groovy
repositories{
maven{ url 'https://raw.githubusercontent.com/Zelaux/Repo/master/repository' }
maven{ url 'https://raw.githubusercontent.com/Zelaux/MindustryRepo/master/repository' }//for Arc
maven{ url 'https://raw.githubusercontent.com/Zelaux/Repo/master/repository' }//for ArcLibrary
}
//use this if you do not need Arc in result jar
dependencies{
"com.github.Zelaux.ArcLibrary:$fullModuleName:$arcLibraryVersion"
compileOnly "com.github.Anuken.Arc:arc-core:$arcVersion"
implementation "com.github.Zelaux.ArcLibrary:$fullModuleName:$arcLibraryVersion"
}
//use this if you do need Arc in result jar
dependencies{
implementation "com.github.Anuken.Arc:arc-core:$arcVersion"
implementation "com.github.Zelaux.ArcLibrary:$fullModuleName:$arcLibraryVersion"
}
```

Expand Down

0 comments on commit ebd7e08

Please sign in to comment.