2018-07-31 22:12:41 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4'
|
2018-08-21 01:30:32 +02:00
|
|
|
id 'maven-publish'
|
2018-10-28 04:45:35 +01:00
|
|
|
id 'checkstyle'
|
2018-08-21 01:30:32 +02:00
|
|
|
}
|
|
|
|
|
2018-10-28 02:45:42 +01:00
|
|
|
apply from: '../gradle/checkerframework.gradle'
|
2018-10-28 04:45:35 +01:00
|
|
|
apply from: '../gradle/checkstyle.gradle'
|
2018-10-28 02:45:42 +01:00
|
|
|
|
2018-08-21 01:30:32 +02:00
|
|
|
sourceSets {
|
|
|
|
ap {
|
|
|
|
compileClasspath += main.compileClasspath + main.output
|
|
|
|
}
|
2018-07-31 22:12:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile 'com.google.code.gson:gson:2.8.5'
|
2018-08-01 06:20:39 +02:00
|
|
|
compile "com.google.guava:guava:${guavaVersion}"
|
2018-08-12 23:19:02 +02:00
|
|
|
compile 'net.kyori:text:1.12-1.6.4'
|
2018-07-31 22:12:41 +02:00
|
|
|
compile 'com.moandjiezana.toml:toml4j:0.7.2'
|
2018-08-21 01:30:32 +02:00
|
|
|
compile "org.slf4j:slf4j-api:${slf4jVersion}"
|
|
|
|
compile 'com.google.inject:guice:4.2.0'
|
2018-10-28 02:45:42 +01:00
|
|
|
compile "org.checkerframework:checker-qual:${checkerFrameworkVersion}"
|
2018-08-21 01:30:32 +02:00
|
|
|
|
2018-07-31 22:12:41 +02:00
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
|
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
|
|
|
|
}
|
|
|
|
|
|
|
|
task javadocJar(type: Jar) {
|
|
|
|
classifier 'javadoc'
|
|
|
|
from javadoc
|
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar) {
|
|
|
|
classifier 'sources'
|
|
|
|
from sourceSets.main.allSource
|
2018-08-21 01:30:32 +02:00
|
|
|
from sourceSets.ap.output
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
from sourceSets.ap.output
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
from sourceSets.ap.output
|
2018-07-31 22:12:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives javadocJar
|
|
|
|
archives shadowJar
|
|
|
|
archives sourcesJar
|
2018-08-12 23:19:02 +02:00
|
|
|
}
|
2018-08-21 01:30:32 +02:00
|
|
|
|
2018-08-25 06:29:22 +02:00
|
|
|
javadoc {
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
options.charSet = 'UTF-8'
|
|
|
|
options.links(
|
|
|
|
'http://www.slf4j.org/apidocs/',
|
|
|
|
'https://google.github.io/guava/releases/25.1-jre/api/docs/',
|
|
|
|
'https://google.github.io/guice/api-docs/4.2/javadoc/',
|
|
|
|
'https://jd.kyori.net/text/1.12-1.6.4/',
|
|
|
|
'https://docs.oracle.com/javase/8/docs/api/'
|
|
|
|
)
|
|
|
|
|
|
|
|
// Disable the crazy super-strict doclint tool in Java 8
|
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
}
|
|
|
|
|
2018-08-21 01:30:32 +02:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
from components.java
|
|
|
|
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-22 05:58:17 +02:00
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name = 'myRepo'
|
2018-08-22 05:58:42 +02:00
|
|
|
def base = project.ext.getCurrentBranchName() == "master" ? 'file:///maven-repo' : File.createTempDir().toURI().toURL().toString()
|
2018-08-22 05:58:17 +02:00
|
|
|
def releasesRepoUrl = "$base/releases"
|
|
|
|
def snapshotsRepoUrl = "$base/snapshots"
|
|
|
|
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
|
2018-08-21 01:30:32 +02:00
|
|
|
}
|
2018-08-22 05:35:09 +02:00
|
|
|
}
|
2018-08-22 05:58:17 +02:00
|
|
|
}
|