From f2a96e469d31cce8c75395cfb7ff29ff1e2c7be3 Mon Sep 17 00:00:00 2001 From: thomaswoehlke Date: Sat, 4 Apr 2020 13:20:09 +0200 Subject: [PATCH 1/3] Fixed #106, Fixed #109, Fixed #110 --- pom.xml | 5 +---- run.sh | 28 ++++++++++++++++++---------- 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index 7fee918f..93b2ac5b 100644 --- a/pom.xml +++ b/pom.xml @@ -434,10 +434,7 @@ simpleworklist - clean spring-boot:run - + clean dependency:list install spring-boot:run org.springframework.boot diff --git a/run.sh b/run.sh index c99ad41e..edf8d2e9 100755 --- a/run.sh +++ b/run.sh @@ -2,30 +2,38 @@ source setenv.sh + + +function runDev() { + ./mvnw +} + +function runGithubTestBuild() { + ./mvnw -B package --file pom.xml +} + + function setupHeroku() { heroku login heroku ps -a simpleworklist } +function buildLikeHeroku() { + ./mvnw -DskipTests clean dependency:list install +} + function runHerokuLocal() { + buildLikeHeroku heroku ps -a simpleworklist ./mvnw clean install heroku local web heroku open } -function runDev() { - ./mvnw clean install -} - -function runGithubTestBuild() { - ./mvnw -B package --file pom.xml -} - function main() { - runDev + #runDev #setupHeroku - #runHerokuLocal + runHerokuLocal } main From 99b6cb37096d54cc8ca508af158428441a528e23 Mon Sep 17 00:00:00 2001 From: thomaswoehlke Date: Sat, 4 Apr 2020 13:22:21 +0200 Subject: [PATCH 2/3] Fixed #106, Fixed #109, Fixed #110 --- pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 93b2ac5b..97b088cf 100644 --- a/pom.xml +++ b/pom.xml @@ -320,7 +320,7 @@ unpack-dependencies - pre-site + site analyze-only analyze-dep-mgt @@ -358,7 +358,7 @@ check-dependencies1 - pre-site + site list list-repositories @@ -367,7 +367,7 @@ check-dependencies2 - pre-site + site analyze analyze-dep-mgt @@ -377,7 +377,7 @@ check-dependencies3 - verify + site tree @@ -400,7 +400,7 @@ get-dependency-sources - pre-site + site sources resolve From 33b713badde344ad338460c2d0662c6a3d331ad0 Mon Sep 17 00:00:00 2001 From: thomaswoehlke Date: Sat, 4 Apr 2020 13:23:53 +0200 Subject: [PATCH 3/3] Fixed #106, Fixed #109, Fixed #110 --- run.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/run.sh b/run.sh index edf8d2e9..4e3bdf68 100755 --- a/run.sh +++ b/run.sh @@ -25,7 +25,6 @@ function buildLikeHeroku() { function runHerokuLocal() { buildLikeHeroku heroku ps -a simpleworklist - ./mvnw clean install heroku local web heroku open }