mirror of
https://gitee.com/dcren/initializr.git
synced 2025-05-03 04:13:52 +08:00
9 lines
207 B
Bash
9 lines
207 B
Bash
![]() |
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
repository=$(pwd)/distribution-repository
|
||
|
|
||
|
pushd git-repo > /dev/null
|
||
|
./mvnw clean deploy -U -Pfull -DaltDeploymentRepository=distribution::default::file://${repository}
|
||
|
popd > /dev/null
|