-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (43 loc) · 1.25 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
plugins {
id'com.github.johnrengelman.shadow' version '4.0.4'
}
apply plugin: 'java'
group = pluginGroup
version = pluginVersion
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven {
name = 'destroystokyo-repo'
url = 'https://repo.destroystokyo.com/repository/maven-public/'
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
maven {
name = 'confuser-repo'
url = 'https://ci.frostcast.net/plugin/repository/everything/'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile "com.destroystokyo.paper:paper-api:${minecraftVersion}"
compile "me.confuser:BanManager:${banManagerVersion}"
compile "com.squareup.okhttp3:okhttp:${okhttpVersion}"
compile "com.squareup.okio:okio:${okioVersion}"
}
shadowJar {
dependencies {
include(dependency("com.squareup.okhttp3:okhttp:${okhttpVersion}"))
include(dependency("com.squareup.okio:okio:${okioVersion}"))
}
}
import org.apache.tools.ant.filters.ReplaceTokens
processResources {
from(sourceSets.main.resources.srcDirs) {
filter ReplaceTokens, tokens: [version: version]
}
}