Advertisement
Guest User

Untitled

a guest
Mar 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. plugins {
  2.   id 'java'
  3.   id 'com.github.johnrengelman.shadow' version '2.0.2' // https://github.com/johnrengelman/shadow
  4. }
  5.  
  6. repositories {
  7.     mavenCentral()
  8.     jcenter()
  9.     maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
  10.     maven { url = "http://ci.emc.gs/nexus/content/groups/aikar/" }
  11.     maven { url = "https://repo.aikar.co/content/groups/aikar/" }
  12.     maven { url = "https://hub.spigotmc.org/nexus/content/groups/public/" }
  13. }
  14.  
  15. libsDirName = '../../../builds'
  16. compileJava.dependsOn shadowJar
  17.  
  18. compileJava {
  19.     options.compilerArgs += ["-parameters"]
  20.     options.fork = true
  21.     options.forkOptions.executable = 'javac'
  22. }
  23.  
  24. shadowJar {
  25.     baseName = 'Commerce'
  26.     classifier = null
  27.    
  28. }
  29.  
  30. dependencies {
  31.     compileOnly fileTree('../lib')
  32.     compileOnly project(':Erudition')
  33.     compileOnly project(':Elements')
  34.     compile 'co.aikar:acf-bukkit:0.5.0-SNAPSHOT'
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement