mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00

- externalized build steps into shell scripts for convenient local usage - added Slack notifications - configure Maven default goal Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
15 lines
371 B
Bash
Executable file
15 lines
371 B
Bash
Executable file
#!/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 \
|
|
$@
|
|
|