Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt committed Jan 20, 2024
1 parent 8206247 commit d3f0060
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ subprojects { subProject ->
)

if (subProject.name != 'junit') {
manifest.attributes.put('FMLModType', subProject.name.startsWith("language") ? 'LANGPROVIDER' : subProject.name == "events" ? 'GAMELIBRARY' : 'LIBRARY',)
manifest.attributes.put('FMLModType', 'LIBRARY')
}
}

Expand Down
5 changes: 3 additions & 2 deletions junit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ plugins {
archivesBaseName = 'junit-fml'

dependencies {
implementation('org.junit.platform:junit-platform-launcher:1.9.3')
implementation(platform("org.junit:junit-bom:$jupiter_version"))
implementation('org.junit.platform:junit-platform-launcher')
// BSL should not be exposed and the actual version should be provided by the neo dep
compileOnly("cpw.mods:bootstraplauncher:${project.bootstraplauncher_version}")
}
Expand All @@ -16,4 +17,4 @@ publishing {
artifactId = archivesBaseName
}
}
}
}

0 comments on commit d3f0060

Please sign in to comment.