Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. apply plugin: 'java-library'
  2. repositories {
  3. jcenter()
  4. }
  5.  
  6. dependencies {
  7. api 'org.apache.commons:commons-math3:3.6.1'
  8. implementation 'com.google.guava:guava:23.0'
  9. testImplementation 'junit:junit:4.12'
  10. }
  11.  
  12. plugins {
  13. id 'org.spongepowered.plugin' version '0.8.1'
  14. }
  15.  
  16. group = 'com.example' // TODO
  17. version = '1.0-SNAPSHOT'
  18. description = 'An example plugin'
  19.  
  20. dependencies {
  21. compile 'org.spongepowered:spongeapi:7.0.0'
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement