6 lines
395 B
Bash
Executable File
6 lines
395 B
Bash
Executable File
#!/bin/bash
|
|
root_path=$(dirname $(cd $(dirname $0);pwd))
|
|
source $root_path/bin/library.sh
|
|
mvn -pl service-common,service-dependencies,service-configuration clean deploy -D skipTests -P local -s ~/.m2/settings-development.xml
|
|
mvn -pl service-api clean package spring-boot:repackage -D skipTests -s ~/.m2/settings-development.xml
|
|
upload $root_path/service-api/target/service-api-1.0.0-SNAPSHOT.jar |