2019-03-18 19:49:22 +01:00
|
|
|
repositories {
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
2016-02-26 13:55:21 +01:00
|
|
|
dependencies {
|
2016-02-29 17:15:51 +01:00
|
|
|
testCompile 'junit:junit:4.12'
|
2018-12-21 17:26:19 +01:00
|
|
|
compile 'org.yaml:snakeyaml:1.23'
|
|
|
|
compile 'com.google.code.gson:gson:2.8.5'
|
2019-04-03 18:15:09 +02:00
|
|
|
compile("org.projectlombok:lombok:1.18.4")
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.4")
|
|
|
|
testCompileOnly("org.projectlombok:lombok:1.18.4")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.4")
|
|
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.4")
|
2019-03-18 19:49:22 +01:00
|
|
|
|
|
|
|
compile 'com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT'
|
|
|
|
compile 'com.squareup.okhttp3:okhttp:3.14.0'
|
|
|
|
compile 'com.squareup.okio:okio:2.2.2'
|
|
|
|
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.3.21'
|
2016-02-27 06:05:21 +01:00
|
|
|
}
|
2019-03-18 19:49:22 +01:00
|
|
|
|
2018-11-14 14:19:56 +01:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2016-02-27 19:41:49 +01:00
|
|
|
|
2017-03-08 06:51:01 +01:00
|
|
|
processResources {
|
|
|
|
from('src/main/resources') {
|
2017-08-09 07:04:59 +02:00
|
|
|
include 'plugin.properties'
|
2017-03-08 06:51:01 +01:00
|
|
|
expand(
|
|
|
|
version: "${project.parent.version}",
|
|
|
|
name: project.parent.name,
|
2019-01-03 18:32:21 +01:00
|
|
|
commit: "${git.head().abbreviatedId}",
|
|
|
|
date: "${git.head().getDate().format("yy.MM.dd")}",
|
2017-03-08 06:51:01 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-22 17:54:13 +01:00
|
|
|
jar.archiveName = "PlotSquared-API-${project.parent.version}.jar"
|
|
|
|
jar.destinationDir = file '../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/' + project.parent.version
|
2018-12-21 17:26:19 +01:00
|
|
|
task createPom {
|
|
|
|
doLast {
|
|
|
|
pom {
|
|
|
|
project {
|
2018-12-25 18:27:07 +01:00
|
|
|
groupId 'com.github.intellectualsites.plotsquared'
|
2019-02-22 17:54:13 +01:00
|
|
|
artifactId 'PlotSquared-API'
|
2018-12-21 17:26:19 +01:00
|
|
|
version project.parent.version
|
|
|
|
}
|
2019-02-22 17:54:13 +01:00
|
|
|
}.writeTo("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/${project.parent.version}/PlotSquared-API-${project.parent.version}.pom")
|
2018-12-21 17:26:19 +01:00
|
|
|
pom {
|
|
|
|
project {
|
2018-12-25 18:27:07 +01:00
|
|
|
groupId 'com.github.intellectualsites.plotsquared'
|
2019-02-22 17:54:13 +01:00
|
|
|
artifactId 'PlotSquared-API'
|
2018-12-21 17:26:19 +01:00
|
|
|
version 'latest'
|
|
|
|
}
|
2019-02-22 17:54:13 +01:00
|
|
|
}.writeTo("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/latest/PlotSquared-API-latest.pom")
|
2018-12-21 17:26:19 +01:00
|
|
|
}
|
2017-03-08 06:51:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
task copyFiles {
|
|
|
|
doLast {
|
|
|
|
copy {
|
2019-02-22 17:54:13 +01:00
|
|
|
from "../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/${project.parent.version}/"
|
|
|
|
into '../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/latest/'
|
2017-03-08 06:51:01 +01:00
|
|
|
include('*.jar')
|
2019-02-22 17:54:13 +01:00
|
|
|
rename("PlotSquared-API-${project.parent.version}.jar", 'PlotSquared-API-latest.jar')
|
2017-03-08 06:51:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
build.finalizedBy(copyFiles)
|
2018-08-10 17:01:10 +02:00
|
|
|
copyFiles.dependsOn(createPom)
|