-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
95 lines (82 loc) · 2.32 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* Copyright (C) 2018-2019 Evan Hedbor.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'idea'
id 'org.jetbrains.kotlin.jvm' version '1.3.11'
id 'org.jetbrains.kotlin.kapt' version '1.3.11'
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
allprojects {
group 'org.hedbor.evan'
version '2.3.1'
}
repositories {
mavenCentral()
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
sourceSets {
main {
java {
srcDir "${buildDir.absolutePath}/tmp/kapt/main/kotlinGenerated/"
}
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.11"
compileOnly 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
compileOnly project(":generator")
kapt project(":generator")
testCompile 'org.jetbrains.kotlin:kotlin-test:1.3.11'
}
jar {
archiveName = "CrunchCommands-${project.version}-nodeps.jar"
doFirst {
filesMatching("**/plugin.yml") {
filter(ReplaceTokens, tokens: ["VERSION": project.version.toString()])
}
}
}
shadowJar {
archiveName = "CrunchCommands-${project.version}.jar"
doFirst {
filesMatching("**/plugin.yml") {
filter(ReplaceTokens, tokens: ["VERSION": project.version.toString()])
}
}
}
task copyJar(type: Copy) {
from shadowJar.outputs.files
into "test-server/plugins"
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}