-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (44 loc) · 1.58 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
plugins {
id 'java-library'
}
repositories {
jcenter()
mavenCentral()
maven {
url "https://jitpack.io"
}
}
group = "net.minecraft"
archivesBaseName = "launchwrapper"
version = "1.12"
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
implementation "org.ow2.asm:asm:9.2"
implementation "org.ow2.asm:asm-commons:9.2"
implementation "org.ow2.asm:asm-util:9.2"
// https://mvnrepository.com/artifact/com.google.guava/guava
implementation 'com.google.guava:guava:31.0.1-jre'
// https://mvnrepository.com/artifact/com.google.inject/guice
implementation 'com.google.inject:guice:5.0.1'
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
implementation 'org.apache.commons:commons-lang3:3.12.0'
// https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
implementation 'org.apache.commons:commons-collections4:4.4'
// https://mvnrepository.com/artifact/org.apache.commons/commons-math3
implementation 'org.apache.commons:commons-math3:3.6.1'
// https://mvnrepository.com/artifact/commons-io/commons-io
implementation 'commons-io:commons-io:2.11.0'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
implementation 'org.apache.logging.log4j:log4j-core:2.17.0'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api
implementation 'org.apache.logging.log4j:log4j-api:2.17.0'
}
task sourcesJar(type: Jar) {
archiveClassifier.set("sources")
from sourceSets.main.allSource
}
artifacts {
archives jar
archives sourcesJar
}