-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (30 loc) · 962 Bytes
/
build.gradle
File metadata and controls
42 lines (30 loc) · 962 Bytes
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
plugins {
id 'java'
}
group 'com.example.gameName'
version '1.0-SNAPSHOT'
repositories {
jcenter()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven {
name "Innoxium Repo"
url "https://repo.repsy.io/mvn/innoxium/innoxium/"
}
}
dependencies {
implementation 'uk.co.innoxium.candor:candor-api:0.2.17'
implementation 'uk.co.innoxium.cybernize:cybernize:1.1.6'
implementation 'com.electronwill.night-config:toml:3.6.3'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.google.guava:guava:29.0-jre'
implementation "org.apache.commons:commons-lang3:3.10"
implementation "commons-io:commons-io:2.7"
implementation "org.apache.commons:commons-math3:3.6.1"
implementation 'com.github.f4b6a3:uuid-creator:2.7.8'
}
jar {
manifest {
attributes 'Candor-Module-Class': 'com.example.gameName.MyGameModule'
}
}