Skip to content

Commit

Permalink
Removed re-obfuscation of the JARs.
Browse files Browse the repository at this point in the history
Bumped to 0.2.13.
Updated forge.
  • Loading branch information
TheOnlyTails committed Jun 7, 2021
1 parent 8a0678e commit 8927255
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
12 changes: 4 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ apply(plugin = "net.minecraftforge.gradle")
// Config -> Minecraft
val forgeVersion: String by extra
val minecraftVersion: String by extra
val kffVersion: String by extra

@Suppress("PropertyName")
val VERSION_NAME: String by extra
Expand Down Expand Up @@ -74,7 +73,7 @@ configure<UserDevExtension> {
property("forge.logging.console.level", "debug")

mods(closureOf<NamedDomainObjectContainer<ModConfig>> {
create("loottables") {
create(POM_ARTIFACT_ID) {
source(sourceSets["main"])
}
})
Expand All @@ -92,7 +91,7 @@ configure<UserDevExtension> {
property("forge.logging.console.level", "debug")

mods(closureOf<NamedDomainObjectContainer<ModConfig>> {
create("loottables") {
create(POM_ARTIFACT_ID) {
source(sourceSets["main"])
}
})
Expand All @@ -112,7 +111,7 @@ configure<UserDevExtension> {
// Specify the mod id for data generation, where to output the resulting resource, and where to look for existing resources.
args(
"--mod",
"loottables",
POM_ARTIFACT_ID,
"--all",
"--output",
file("src/generated/resources/"),
Expand All @@ -121,7 +120,7 @@ configure<UserDevExtension> {
)

mods(closureOf<NamedDomainObjectContainer<ModConfig>> {
create("loottables") {
create(POM_ARTIFACT_ID) {
source(sourceSets["main"])
}
})
Expand Down Expand Up @@ -176,9 +175,6 @@ tasks.named<Jar>("jar") {
"FMLModType" to "LIBRARY"
)
}

@Suppress("SpellCheckingInspection")
finalizedBy("reobfJar")
}

// Publishing to maven central
Expand Down
5 changes: 2 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
# Versions
minecraftVersion=1.16.5
forgeVersion=36.1.16
kffVersion=1.12.0
forgeVersion=36.1.25
# Maven publishing
GROUP=com.theonlytails
POM_ARTIFACT_ID=loottables
VERSION_NAME=0.2.12
VERSION_NAME=0.2.13
POM_NAME=LootTables
POM_DESCRIPTION=A Kotlin DSL for creating loot tables in Minecraft Forge mods.
POM_INCEPTION_YEAR=2021
Expand Down

0 comments on commit 8927255

Please sign in to comment.