You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
412 B
15 lines
412 B
#!/usr/bin/env bash |
|
|
|
set -euo pipefail |
|
|
|
[[ -d $PWD/maven && ! -d $HOME/.m2 ]] && ln -s $PWD/maven $HOME/.m2 |
|
|
|
spring_data_jdbc_artifactory=$(pwd)/spring-data-jdbc-artifactory |
|
|
|
rm -rf $HOME/.m2/repository/org/springframework/data 2> /dev/null || : |
|
|
|
cd spring-data-jdbc-github |
|
|
|
./mvnw deploy \ |
|
-Dmaven.test.skip=true \ |
|
-DaltDeploymentRepository=distribution::default::file://${spring_data_jdbc_artifactory}
|
|
|