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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
import gg.essential.gradle.multiversion.StripReferencesTransform.Companion.registerStripReferencesAttribute
import gg.essential.gradle.util.RelocationTransform.Companion.registerRelocationAttribute
import gg.essential.gradle.util.prebundle
plugins {
kotlin("jvm") version "1.6.21"
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.8.0"
id("gg.essential.defaults.repo")
id("gg.essential.defaults.java")
id("net.kyori.blossom") version "1.3.0"
id("maven-publish")
id("signing")
java
}
kotlin.jvmToolchain {
(this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(8))
}
java {
withSourcesJar()
}
val mod_name: String by project
val mod_major_version: String by project
val mod_minor_version: String by project
val mod_id: String by project
blossom {
replaceToken("@VER@", mod_major_version + mod_minor_version)
replaceToken("@NAME@", mod_name)
replaceToken("@ID@", mod_id)
}
version = mod_major_version + mod_minor_version
group = "cc.polyfrost"
repositories {
maven("https://repo.polyfrost.cc/releases")
}
val relocated = registerRelocationAttribute("relocate") {
relocate("gg.essential", "cc.polyfrost.oneconfig.libs")
relocate("me.kbrewster", "cc.polyfrost.oneconfig.libs")
relocate("com.github.benmanes", "cc.polyfrost.oneconfig.libs")
relocate("com.google", "cc.polyfrost.oneconfig.libs")
relocate("org.checkerframework", "cc.polyfrost.oneconfig.libs")
remapStringsIn("com.github.benmanes.caffeine.cache.LocalCacheFactory")
remapStringsIn("com.github.benmanes.caffeine.cache.NodeFactory")
}
val shadeRelocated: Configuration by configurations.creating {
attributes { attribute(relocated, true) }
}
val shade: Configuration by configurations.creating {
configurations.api.get().extendsFrom(this)
}
val shadeNoPom: Configuration by configurations.creating
val common = registerStripReferencesAttribute("common") {
excludes.add("net.minecraft")
excludes.add("net.minecraftforge")
}
dependencies {
compileOnly("com.google.code.gson:gson:2.2.4")
compileOnly("commons-io:commons-io:2.4")
compileOnly("com.google.guava:guava:17.0")
compileOnly("org.lwjgl:lwjgl-opengl:3.3.1")
compileOnly("org.apache.logging.log4j:log4j-core:2.0-beta9")
compileOnly("org.apache.logging.log4j:log4j-api:2.0-beta9")
compileOnly("org.ow2.asm:asm-debug-all:5.0.3")
compileOnly("org.apache.commons:commons-lang3:3.3.2")
compileOnly("gg.essential:vigilance-1.8.9-forge:252") {
attributes { attribute(common, true) }
isTransitive = false
}
shadeRelocated("gg.essential:universalcraft-1.8.9-forge:228") {
attributes { attribute(common, true) }
isTransitive = false
}
shadeRelocated("com.github.KevinPriv:keventbus:c52e0a2ea0") {
isTransitive = false
}
@Suppress("GradlePackageUpdate")
shadeRelocated("com.github.ben-manes.caffeine:caffeine:2.9.3")
// for other mods and universalcraft
val kotlinVersion: String by project
val coroutinesVersion: String by project
val serializationVersion: String by project
val atomicfuVersion: String by project
shade("org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion")
shade("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
shade("org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion")
shade("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
shade("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
shade("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:$coroutinesVersion")
shade("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutinesVersion")
shade("org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:$serializationVersion")
shade("org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:$serializationVersion")
shade("org.jetbrains.kotlinx:kotlinx-serialization-cbor-jvm:$serializationVersion")
shade("org.jetbrains.kotlinx:atomicfu-jvm:$atomicfuVersion")
shade("org.spongepowered:mixin:0.7.11-SNAPSHOT") {
isTransitive = false
}
shade("cc.polyfrost:lwjgl-1.8.9-forge:1.0.0-alpha8")
shadeNoPom(prebundle(shadeRelocated))
configurations.named(JavaPlugin.COMPILE_CLASSPATH_CONFIGURATION_NAME) { extendsFrom(shadeNoPom) }
configurations.named(JavaPlugin.RUNTIME_CLASSPATH_CONFIGURATION_NAME) { extendsFrom(shadeNoPom) }
}
tasks {
withType(Jar::class.java) {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
if (!name.contains("sourcesjar", ignoreCase = true) || !name.contains("dokka", ignoreCase = true)) {
exclude("**/**_Test.**")
exclude("**/**_Test$**.**")
}
}
named<Jar>("sourcesJar") {
exclude("**/internal/**")
archiveClassifier.set("sources")
doFirst {
archiveClassifier.set("sources")
}
}
}
apiValidation {
ignoredPackages.add("org.lwjgl")
ignoredPackages.add("cc.polyfrost.oneconfig.libs")
ignoredPackages.add("cc.polyfrost.oneconfig.internal")
ignoredPackages.add("cc.polyfrost.oneconfig.test")
}
|