-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (32 loc) · 977 Bytes
/
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
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
}
group = 'me.gabriel'
version = '1.0.2'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
mavenCentral()
mavenLocal()
maven { url = 'https://papermc.io/repo/repository/maven-public/' }
maven { url = 'https://oss.sonatype.org/content/groups/public/' }
}
dependencies {
compileOnly('com.destroystokyo.paper:paper-api:1.12-R0.1-SNAPSHOT')
compileOnly('org.projectlombok:lombok:1.18.12')
annotationProcessor('org.projectlombok:lombok:1.18.12')
// (Local dependencies)
compileOnly('me.gabriel:fawe-legacy:19')
compileOnly('me.gabriel:worldedit:6.1.9')
compileOnly('me.gabriel:factions:1.8')
compileOnly('me.gabriel:massivecore:1.8')
}
processResources {
from(sourceSets.main.resources.srcDirs) {
filter ReplaceTokens, tokens: [version: version]
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}