Switch to using local maven for Piston

This commit is contained in:
Kenzie Togami 2019-04-14 01:53:04 -07:00
parent f8c4f23658
commit da35b3c174
No known key found for this signature in database
GPG Key ID: 5D200B325E157A81
2 changed files with 11 additions and 6 deletions

View File

@ -1,5 +1,3 @@
rootProject.name = 'worldedit'
include 'worldedit-core', 'worldedit-bukkit', 'worldedit-forge', 'worldedit-sponge'
includeBuild("../Piston")

View File

@ -13,6 +13,11 @@ configurations.all { Configuration it ->
}
}
repositories {
// temporary, for Piston
mavenLocal()
}
dependencies {
compile 'de.schlichtherle:truezip:6.8.3'
compile 'rhino:js:1.7R2'
@ -25,10 +30,12 @@ dependencies {
compile 'com.sk89q.lib:jlibnoise:1.0.0'
compile 'com.googlecode.json-simple:json-simple:1.1.1'
compile 'org.slf4j:slf4j-api:1.7.26'
compileOnly 'org.enginehub.piston:core-ap-annotations:0.0.1-SNAPSHOT'
compile 'org.enginehub.piston:core-ap-runtime:0.0.1-SNAPSHOT'
annotationProcessor 'org.enginehub.piston:core-ap-processor:0.0.1-SNAPSHOT'
compile 'org.enginehub.piston:default-impl:0.0.1-SNAPSHOT'
def pistonVersion = '0.0.1-SNAPSHOT'
compileOnly "org.enginehub.piston.core-ap:annotations:$pistonVersion"
compile "org.enginehub.piston.core-ap:runtime:$pistonVersion"
annotationProcessor "org.enginehub.piston.core-ap:processor:$pistonVersion"
compile "org.enginehub.piston:default-impl:$pistonVersion"
//compile 'net.sf.trove4j:trove4j:3.0.3'
testCompile 'org.mockito:mockito-core:1.9.0-rc1'
}