import groovy.io.FileType apply plugin: 'java-library' apply plugin: 'maven' version = '0.1.24' group = 'com.mojang' task wrapper(type: Wrapper) { gradleVersion = '4.0' } repositories { maven { url "https://libraries.minecraft.net" } mavenCentral() } dependencies { api 'com.google.guava:guava:21.0' 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:21.0' testCompile 'org.openjdk.jmh:jmh-core:1.19' testCompile 'org.openjdk.jmh:jmh-generator-annprocess:1.19' } task sourcesJar(type: Jar) { classifier = 'sources' from sourceSets.main.allSource } sourceSets { main { java { srcDirs = ['src/main/java'] } resources { srcDirs = ['src/main/resources'] } } test { java { srcDirs = ['src/test/java'] } resources { srcDirs = ['src/test/resources'] } } } artifacts { archives jar archives sourcesJar } test { testLogging { events "failed", "skipped" showStandardStreams = true showExceptions true } } def repoDir = new File(projectDir, "repo") repoDir.mkdirs() uploadArchives { repositories { mavenDeployer { repository(url: "file://" + repoDir.absolutePath) pom.project { description 'Command Registration & Dispatch System' url 'http://github.com/Mojang/brigadier' } } } doLast { // Purge all annoying files that arent needed repoDir.traverse(type: FileType.FILES, nameFilter: ~/.*\.(xml|xml\.sha1|md5)$/) { it.delete() } } } clean.doLast { repoDir.deleteDir() }