-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (28 loc) · 853 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
}
group 'de.twometer'
version '2.0.0'
repositories {
mavenCentral()
maven { url 'https://maven.twometer.de/releases/' }
maven { url 'https://clojars.org/repo/' }
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.0'
implementation 'org.slf4j:slf4j-log4j12:1.7.32'
implementation 'de.twometer:neko-engine:2.3.4'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.esotericsoftware:kryo:5.2.0'
implementation 'kryonet:kryonet:2.21'
}
jar {
manifest {
attributes "Main-Class": 'de.twometer.amogus.BootstrapKt'
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
duplicatesStrategy DuplicatesStrategy.EXCLUDE
archiveName 'among-us-3d.jar'
}