forked from WilderForge/WildermythGameProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (40 loc) · 1.23 KB
/
build.gradle
File metadata and controls
48 lines (40 loc) · 1.23 KB
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-library'
id 'eclipse'
}
repositories {
mavenCentral()
maven {
url "https://repo.spongepowered.org/maven/"
}
maven {
url "https://maven.fabricmc.net/"
}
}
sourceCompatibility = '9'
targetCompatibility = '9'
version = providerVersion
group = "com.thegamecommunity"
archivesBaseName = "provider"
dependencies {
compileOnly group: 'org.jetbrains', name: 'intellij-fernflower', version: '1.2.1.16'
compileOnly group: 'net.fabricmc', name: 'fabric-loader', version: '0.13.1'
//mixin requirements:
compileOnly 'org.spongepowered:mixin:' + mixinVersion
compileOnly 'com.google.guava:guava:21.0'
compileOnly group: 'com.google.code.gson', name: 'gson', version: '2.8.7'
compileOnly group: 'org.ow2.asm', name: 'asm', version: asmVersion
compileOnly group: 'org.ow2.asm', name: 'asm-analysis', version: asmVersion
compileOnly group: 'org.ow2.asm', name: 'asm-commons', version: asmVersion
compileOnly group: 'org.ow2.asm', name: 'asm-tree', version: asmVersion
compileOnly group: 'org.ow2.asm', name: 'asm-util', version: asmVersion
}
jar {
manifest {
attributes(
'Class-Path': configurations.runtimeClasspath.collect { it.getName() }.join(' '),
'Specification-Version': 8.0,
'Multi-Release': 'true'
)
}
}