-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (39 loc) · 1.23 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
plugins {
id 'java'
}
group 'com.dioswilson'
version '1.2.4'
repositories {
mavenCentral()
maven {
url "https://maven.seedfinding.com/"
}
maven {
name = 'JitPack'
url = 'https://jitpack.io'
}
}
dependencies {
implementation('com.seedfinding:mc_core:1.192.1') { transitive = false }
implementation('com.seedfinding:mc_biome:1.171.1') { transitive = false }
implementation('com.seedfinding:mc_seed:1.171.1') { transitive = false }
implementation('com.seedfinding:mc_noise:1.171.1') { transitive = false }
implementation('com.seedfinding:mc_math:1.171.0') { transitive = false }
// implementation('com.seedfinding:mc_terrain:1.171.1') { transitive = false }
// implementation('com.seedfinding:mc_feature:1.171.1') { transitive = false }
implementation 'com.github.Querz:NBT:6.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}
def mainClassName = "com.dioswilson.Main"
jar {
manifest {
attributes "Main-Class": "$mainClassName"
}
from {
configurations.compileClasspath .collect { it.isDirectory() ? it : zipTree(it) }
}
}