rename tasks
This commit is contained in:
parent
f22d5887df
commit
24d66f6b81
@ -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/
|
||||||
|
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user