mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 16:28:56 +00:00
16 lines
371 B
Bash
16 lines
371 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
if [ -z "$JENKINS_URL" ]; then
|
||
|
# if not set in environment use default
|
||
|
JENKINS_URL=https://ci.eclipse.org/xtext/
|
||
|
fi
|
||
|
|
||
|
mvn \
|
||
|
-f releng \
|
||
|
--batch-mode \
|
||
|
--update-snapshots \
|
||
|
-Dmaven.repo.local=.m2/repository \
|
||
|
-DJENKINS_URL=$JENKINS_URL \
|
||
|
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn \
|
||
|
$@
|
||
|
|