Advertisement
notjacob

build.gradle

Feb 10th, 2020
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.77 KB | None | 0 0
  1. apply plugin: 'java'
  2. repositories {
  3.     mavenLocal()
  4.     mavenCentral()
  5.     maven {
  6.       url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
  7.     }
  8.    
  9.     maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
  10.    
  11.     maven {
  12.         url = 'http://repo.bukkit.org/content/groups/public/'
  13.     }
  14.  
  15. }
  16.  
  17.  
  18. dependencies {
  19.     compile group: 'org.reflections', name: 'reflections', version: '0.9.12'
  20.     compileOnly 'org.spigotmc:spigot-api:1.8.8-R0.1-SNAPSHOT'
  21.     compileOnly 'org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT'
  22.     compileOnly 'org.spigotmc:spigot:1.8.8-R0.1-SNAPSHOT'
  23.     compileOnly 'org.bukkit:craftbukkit:1.8.8-R0.1-SNAPSHOT'
  24. }
  25.  
  26.  
  27.  
  28.  
  29. group = 'NotDuels1.8'
  30. version = '1.0'
  31. description = 'NotDuels'
  32. sourceCompatibility = '1.8'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement