rename tasks

This commit is contained in:
thzero 2023-05-06 11:18:35 -05:00
parent f22d5887df
commit 24d66f6b81
2 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ jdk:
- oraclejdk13 - oraclejdk13
script: script:
- gradlew clean test deployFull - gradlew clean test distFull
notifications: notifications:
webhooks: https://www.travisbuddy.com/ webhooks: https://www.travisbuddy.com/

View File

@ -48,18 +48,18 @@ shadowJar {
//shadowJar.dependsOn([':core:serializeEngines']) //shadowJar.dependsOn([':core:serializeEngines'])
// Runs a build of the application. This does not include executions of the // Runs a distribution build of the application. This does not include executions of the
// serialization of engines. // serialization of engines.
tasks.register('deploy') { tasks.register('dist') {
group = 'openrocket' group = 'openrocket'
dependsOn 'shadowJar' dependsOn 'shadowJar'
doLast { doLast {
println "Completed the deployable jar in './build/libs" println "Completed the deployable jar in './build/libs"
} }
} }
// Runs a complete build of the application. This includes executions the // Runs a complete distribution build of the application. This includes executions the
// serialization of engines by fetching data from ThrustCurve. // serialization of engines by fetching data from ThrustCurve.
tasks.register('deployFull') { tasks.register('distFull') {
group = 'openrocket' group = 'openrocket'
dependsOn ':core:serializeEngines', 'shadowJar' dependsOn ':core:serializeEngines', 'shadowJar'
doLast { doLast {