Skip to content

Commit

Permalink
Fix manifest mod version property
Browse files Browse the repository at this point in the history
  • Loading branch information
Su5eD committed Jul 22, 2024
1 parent b78d284 commit 430aa20
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions buildSrc/src/main/kotlin/ffapi.neo-setup.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,21 @@ dependencies {
}

tasks {
named<Jar>("jar") {
manifest {
attributes(
"Implementation-Version" to project.version
)
afterEvaluate {
named<Jar>("jar") {
manifest {
attributes(
"Implementation-Version" to project.version
)
}
}
}

named<Test>("test") {
useJUnitPlatform()
enabled = false
}

named<ProcessResources>("processResources") {
filesMatching("assets/*/icon.png") {
exclude()
Expand Down
2 changes: 1 addition & 1 deletion ffapi.gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
loom.platform=neoforge
fabric.loom.dontRemap=true

implementationVersion=2.0.4
implementationVersion=2.0.5

versionMc=1.21
versionForge=21.0.57-beta
Expand Down

0 comments on commit 430aa20

Please sign in to comment.