Added gradle wrapper and updated to gradle 4

This commit is contained in:
Nathan Adams
2017-06-21 14:11:41 +02:00
parent b6b684efc7
commit a4dca40ffb
6 changed files with 304 additions and 28 deletions
+38 -28
View File
@@ -1,37 +1,28 @@
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'java-library'
apply plugin: 'maven'
apply plugin: 'eclipse'
version = '0.0.1'
archivesBaseName = 'brigadier'
version = '0.1.0'
group = 'com.mojang'
sourceCompatibility = 1.6
test {
testLogging {
events "failed", "skipped"
showStandardStreams true
showExceptions true
}
task wrapper(type: Wrapper) {
gradleVersion = '4.0'
}
repositories {
maven {
url "http://s3.amazonaws.com/Minecraft.Download/libraries"
url "https://libraries.minecraft.net"
}
mavenCentral()
}
dependencies {
compile 'com.google.code.findbugs:jsr305:2.0.1'
compile 'com.google.guava:guava:17.0'
compile 'org.apache.commons:commons-lang3:3.3.2'
testCompile 'junit:junit-dep:4.10'
testCompile 'org.hamcrest:hamcrest-library:1.2.1'
testCompile 'org.mockito:mockito-core:1.8.5'
testCompile 'com.google.guava:guava-testlib:17.0'
api 'com.google.code.findbugs:jsr305:2.0.1'
api 'com.google.guava:guava:17.0'
api 'org.apache.commons:commons-lang3:3.3.2'
testImplementation 'junit:junit-dep:4.10'
testImplementation 'org.hamcrest:hamcrest-library:1.2.1'
testImplementation 'org.mockito:mockito-core:1.8.5'
testImplementation 'com.google.guava:guava-testlib:17.0'
}
task sourcesJar(type: Jar) {
@@ -39,11 +30,22 @@ task sourcesJar(type: Jar) {
from sourceSets.main.allSource
}
test {
testLogging {
events "failed", "skipped"
showStandardStreams true
showExceptions true
sourceSets {
main {
java {
srcDirs = ['src/main/java']
}
resources {
srcDirs = ['src/main/resources']
}
}
test {
java {
srcDirs = ['src/test/java']
}
resources {
srcDirs = ['src/test/resources']
}
}
}
@@ -52,6 +54,14 @@ artifacts {
archives sourcesJar
}
test {
testLogging {
events "failed", "skipped"
showStandardStreams true
showExceptions true
}
}
def repoDir = new File(projectDir, "repo")
repoDir.mkdirs()
@@ -75,6 +85,6 @@ uploadArchives {
}
}
clean << {
clean.doLast {
repoDir.deleteDir()
}
}