1
- version project. modVersion
2
- group project. modGroup
3
-
4
1
buildscript {
5
2
repositories {
6
3
mavenCentral()
7
4
maven { url = ' https://maven.minecraftforge.net/' }
8
5
maven { url = ' https://repo.spongepowered.org/maven/' }
9
6
}
10
-
11
7
dependencies {
12
8
classpath ' net.minecraftforge.gradle:ForgeGradle:5.+'
13
9
classpath ' org.spongepowered:mixingradle:0.7-SNAPSHOT'
14
- classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
15
- classpath " org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion "
16
10
}
17
11
}
18
12
19
- apply plugin : ' idea'
20
- apply plugin : ' kotlin'
13
+ plugins {
14
+ id ' org.jetbrains.kotlin.jvm' version " $kotlinVersion "
15
+ }
16
+
21
17
apply plugin : ' net.minecraftforge.gradle'
22
- apply plugin : ' org.jetbrains.dokka'
23
18
apply plugin : ' org.spongepowered.mixin'
24
19
20
+ version project. modVersion
21
+ group project. modGroup
22
+
25
23
compileJava {
26
24
sourceCompatibility = targetCompatibility = ' 1.8'
27
25
options. encoding = ' UTF-8'
@@ -34,10 +32,10 @@ compileKotlin.kotlinOptions {
34
32
}
35
33
36
34
repositories {
35
+ mavenCentral()
37
36
maven { url = ' https://repo.spongepowered.org/maven/' }
38
37
maven { url = ' https://impactdevelopment.github.io/maven/' }
39
- maven { url = " https://jitpack.io" }
40
- mavenCentral()
38
+ maven { url = ' https://jitpack.io' }
41
39
}
42
40
43
41
minecraft {
@@ -70,53 +68,40 @@ dependencies {
70
68
// Forge
71
69
minecraft " net.minecraftforge:forge:$minecraftVersion -$forgeVersion "
72
70
73
- jarLibs(' org.spongepowered:mixin:0.8.3 ' ) {
71
+ jarLibs(' org.spongepowered:mixin:0.8.5 ' ) {
74
72
exclude module : ' commons-io'
75
73
exclude module : ' gson'
76
74
exclude module : ' guava'
77
- exclude module : ' launchwrapper'
78
- exclude module : ' log4j-core' // we want to exclude this as well because 0.8.3 includes it too new for MC
79
75
}
80
76
81
77
// Hacky way to get mixin work
82
- annotationProcessor(' org.spongepowered:mixin:0.8.3 :processor' ) {
78
+ annotationProcessor(' org.spongepowered:mixin:0.8.5 :processor' ) {
83
79
exclude module : ' gson'
84
80
}
85
81
86
82
// Not the latest Reflections because it breaks Future compatibility :/
87
- jarLibs(' org.reflections:reflections:0.9.12' ) {
88
- exclude module : ' gson'
89
- exclude module : ' guava'
90
- }
91
-
92
- // Kotlin libs
93
- // kotlin-stdlib-common and annotations aren't required at runtime
94
- jarLibs(" org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion " ) {
95
- exclude module : ' kotlin-stdlib-common'
96
- exclude module : ' annotations'
97
- }
98
-
99
- jarLibs(" org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion " ) {
100
- exclude module : ' kotlin-stdlib-common'
101
- exclude module : ' annotations'
102
- }
83
+ // noinspection GradlePackageUpdate
84
+ jarLibs ' org.reflections:reflections:0.9.12'
103
85
104
86
jarLibs(" org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion " ) {
105
87
exclude module : ' kotlin-stdlib-common'
106
88
exclude module : ' annotations'
107
89
}
108
90
109
91
jarLibs(" org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion " ) {
110
- exclude module : ' kotlin-stdlib-common'
111
- exclude module : ' annotations'
92
+ exclude module : ' kotlin-stdlib'
112
93
}
113
94
114
95
jarLibs(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinxCoroutinesVersion " ) {
96
+ exclude module : ' kotlin-stdlib-jdk8'
115
97
exclude module : ' kotlin-stdlib-common'
116
- exclude module : ' annotations'
117
98
}
118
99
119
- jarLibs " com.github.cbyrneee:DiscordIPC:e18542f600"
100
+ jarLibs(' com.github.cbyrneee:DiscordIPC:e18542f600' ) {
101
+ exclude module : ' junixsocket-common'
102
+ exclude module : ' junixsocket-native-common'
103
+ exclude module : ' json'
104
+ }
120
105
121
106
// Add them back to compileOnly (provided)
122
107
compileOnly " org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion "
@@ -134,7 +119,11 @@ dependencies {
134
119
135
120
mixin {
136
121
defaultObfuscationEnv ' searge'
137
- add sourceSets. main, ' mixins.lambda.refmap.json'
122
+ sourceSets {
123
+ main {
124
+ ext. refMap = ' mixins.lambda.refmap.json'
125
+ }
126
+ }
138
127
}
139
128
140
129
processResources {
@@ -151,15 +140,15 @@ task sourceJar(type: Jar) { // Generate sources
151
140
group ' build'
152
141
description ' Assemble API library source archive'
153
142
154
- archiveClassifier. set( ' api-source' )
143
+ archiveClassifier. set ' api-source'
155
144
from sourceSets. main. allSource
156
145
}
157
146
158
147
task apiJar (type : Jar ) {
159
148
group ' build'
160
149
description ' Assemble API library archive'
161
150
162
- archiveClassifier. set( ' api' )
151
+ archiveClassifier. set ' api'
163
152
from sourceSets. main. output
164
153
}
165
154
@@ -176,7 +165,17 @@ jar {
176
165
177
166
// Copy needed libs to jar
178
167
from {
179
- exclude " **/module-info.class"
168
+ exclude ' **/module-info.class' ,
169
+ ' DebugProbesKt.bin' ,
170
+ ' META-INF/maven/**' ,
171
+ ' META-INF/proguard/**' ,
172
+ ' META-INF/versions/**' ,
173
+ ' META-INF/**.RSA' ,
174
+ ' META-INF/com.android.tools/**' ,
175
+ ' META-INF/*.kotlin_module' ,
176
+ ' kotlin/**/*.kotlin_metadata' ,
177
+ ' kotlin/**/*.kotlin_builtins' ,
178
+ ' META-INF/*.version'
180
179
configurations. jarLibs. collect {
181
180
it. isDirectory() ? it : zipTree(it)
182
181
}
0 commit comments