mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-06-08 05:02:11 +00:00
16 lines
446 B
Bash
16 lines
446 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
[[ -d $PWD/maven && ! -d $HOME/.m2 ]] && ln -s $PWD/maven $HOME/.m2
|
||
|
|
||
|
spring_data_elasticsearch_artifactory=$(pwd)/spring-data-elasticsearch-artifactory
|
||
|
|
||
|
rm -rf $HOME/.m2/repository/org/springframework/data 2> /dev/null || :
|
||
|
|
||
|
cd spring-data-elasticsearch-github
|
||
|
|
||
|
./mvnw deploy \
|
||
|
-Dmaven.test.skip=true \
|
||
|
-DaltDeploymentRepository=distribution::default::file://${spring_data_elasticsearch_artifactory}
|