2018-10-18 19:52:26 +02:00
|
|
|
stages:
|
|
|
|
- build
|
2018-10-18 19:47:40 +02:00
|
|
|
|
2019-04-11 11:32:26 +02:00
|
|
|
variables:
|
|
|
|
name: "EpicAnchors"
|
|
|
|
path: "/builds/$CI_PROJECT_PATH"
|
2019-07-19 20:59:25 +02:00
|
|
|
version: "1.3.3"
|
2019-04-11 11:32:26 +02:00
|
|
|
|
2018-10-18 19:52:26 +02:00
|
|
|
build:
|
2018-10-18 19:47:40 +02:00
|
|
|
stage: build
|
2019-04-11 11:32:26 +02:00
|
|
|
image: maven:3.5.3-jdk-8
|
|
|
|
script:
|
|
|
|
- find $path/ -type f -name "*.xml" -print0 | xargs -0 sed -i -e s/maven-version-number/$version/g
|
|
|
|
- find $path/ -type f -name "*.yml" -print0 | xargs -0 sed -i -e s/maven-version-number/$version/g
|
|
|
|
- mvn clean package
|
|
|
|
- find $path/ -depth -path '*original*' -delete
|
|
|
|
- mv $path/target/*.jar $path/
|
2018-10-18 19:47:40 +02:00
|
|
|
artifacts:
|
2019-04-11 11:32:26 +02:00
|
|
|
name: $name-$version
|
2018-10-18 19:47:40 +02:00
|
|
|
paths:
|
2019-04-11 11:32:26 +02:00
|
|
|
- "$path/*.jar"
|