-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
66 lines (54 loc) · 1.28 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
buildscript {
repositories {
jcenter()
}
}
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building a CLI application
id 'application'
id 'idea'
id 'eclipse'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
repositories {
mavenCentral()
maven {
url "https://jitpack.io"
}
}
dependencies {
implementation('com.github.KaptainWutax:BiomeUtils:94098e9d2bd8bc4f1134d4b79dfa82d70ef90979') {
transitive = false
}
implementation('com.github.KaptainWutax:FeatureUtils:67098281211343ed9a0c5216e021c63db54f3ba2') {
transitive = false
}
implementation('com.github.KaptainWutax:SeedUtils:b5bf2e23610cc0eebcb91443788228c2ed446914') {
transitive = false
}
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
sourceSets {
main {
java {
srcDirs = ['src']
}
}
test {
java {
srcDirs = ['test']
}
}
}
jar {
manifest {
attributes 'Main-Class': 'ch.endte.seedfinder.SeedFinder2'
}
}
application {
// Define the main class for the application
mainClassName = 'ch.endte.seedfinder.SeedFinder2'
}