Skip to content

Commit

Permalink
fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
FalsePattern committed Dec 11, 2024
1 parent d3d7f96 commit ee16c67
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
import minetweaker.tasks.RegisterZenClassesTask

plugins {
id("fpgradle-minecraft") version("0.8.3")
id("fpgradle-minecraft") version "0.8.3"
}

group = "minetweaker"

minecraft_fp {
mod {
modid = "MineTweaker3" //REQUIRED
name = "MineTweaker 3" //REQUIRED
rootPkg = "minetweaker" //REQUIRED
modid = "MineTweaker3"
name = "MineTweaker 3"
rootPkg = "minetweaker"
}
publish {
maven {
repoUrl = "https://example.com/"
repoName = "example"
group = "${project.group}" //Convention
artifact = "minetweaker-mc1.7.10" //Convention
repoUrl = "https://mvn.falsepattern.com/gtmega_releases/"
repoName = "mega"
group = "mega"
artifact = "crafttweaker-mc1.7.10"
}
}
}
Expand Down

0 comments on commit ee16c67

Please sign in to comment.