Skip to content

Commit

Permalink
buildscripts: add task dependencies on ':MinieLibrary:pom'
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 15, 2024
1 parent d59d424 commit 92fef50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MinieAssets/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ ext {
tasks.withType(JavaCompile).configureEach { // Java compile-time options:
options.deprecation = true
}
tasks.withType(JavaExec).configureEach { // Java runtime options:
dependsOn(':MinieLibrary:pom');
}

dependencies {
implementation(libs.jme.ttf)
Expand Down
1 change: 1 addition & 0 deletions MinieDump/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ plugins {
tasks.withType(JavaCompile).configureEach { // Java compile-time options:
options.deprecation = true
}
startScripts.dependsOn(':MinieLibrary:pom')

application {
mainClass = 'jme3utilities.minie.cli.MinieDump'
Expand Down

0 comments on commit 92fef50

Please sign in to comment.