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
script:
- gradlew clean test deployFull
- gradlew clean test distFull
notifications:
webhooks: https://www.travisbuddy.com/

View File

@ -48,18 +48,18 @@ shadowJar {
//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.
tasks.register('deploy') {
tasks.register('dist') {
group = 'openrocket'
dependsOn 'shadowJar'
doLast {
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.
tasks.register('deployFull') {
tasks.register('distFull') {
group = 'openrocket'
dependsOn ':core:serializeEngines', 'shadowJar'
doLast {