From 24d66f6b81b74c87778c4260ecd9cbd04bd5d25a Mon Sep 17 00:00:00 2001 From: thzero Date: Sat, 6 May 2023 11:18:35 -0500 Subject: [PATCH] rename tasks --- .travis.yml | 2 +- build.gradle | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ba5f642c..b8d858e87 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ jdk: - oraclejdk13 script: - - gradlew clean test deployFull + - gradlew clean test distFull notifications: webhooks: https://www.travisbuddy.com/ diff --git a/build.gradle b/build.gradle index 6efddd406..e95e16ae7 100644 --- a/build.gradle +++ b/build.gradle @@ -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 {