forked from jakubDoka/TWS-pluginV2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (32 loc) · 1.01 KB
/
Copy pathbuild.gradle
File metadata and controls
39 lines (32 loc) · 1.01 KB
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
plugins{
id 'java-library'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
version null
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven{ url 'https://www.jitpack.io' }
}
ext{
//the build number that this plugin is made for
mindustryVersion = 'v104.6'
}
dependencies {
compile 'com.googlecode.json-simple:json-simple:1.1.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.0.1'
compile group: 'org.jsoup', name: 'jsoup', version: '1.12.1'
compile 'org.mongojack:mongojack:4.0.1'
compile 'org.springframework.data:spring-data-mongodb:3.0.0.RELEASE'
compile 'org.mongodb:mongo-java-driver:2.12.3'
implementation "org.javacord:javacord:3.0.6"
compileOnly "com.github.Anuken.Arc:arc-core:$mindustryVersion"
compileOnly "com.github.Anuken.Mindustry:core:$mindustryVersion"
}
jar{
from{
configurations.runtimeClasspath.collect{it.isDirectory() ? it : zipTree(it)}
}
}
compileJava.options.encoding = 'UTF-8'