2019-03-07 05:36:54 +01:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
|
|
|
|
variables:
|
2019-03-07 05:38:26 +01:00
|
|
|
name: "ultimatemoderation"
|
2019-04-11 08:58:45 +02:00
|
|
|
path: "/builds/$CI_PROJECT_PATH"
|
2019-04-11 05:30:04 +02:00
|
|
|
version: "1.0.1"
|
2019-03-07 05:36:54 +01:00
|
|
|
|
|
|
|
build:
|
|
|
|
stage: build
|
|
|
|
image: maven:3.5.3-jdk-8
|
|
|
|
script:
|
2019-04-04 20:46:39 +02:00
|
|
|
- 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'
|
2019-03-07 05:36:54 +01:00
|
|
|
- mvn clean package
|
|
|
|
- find $path/ -depth -path '*original*' -delete
|
|
|
|
- mv -v $path/target/*.jar $path
|
|
|
|
artifacts:
|
2019-04-04 20:46:39 +02:00
|
|
|
name: '$name-$version'
|
2019-03-07 05:36:54 +01:00
|
|
|
paths:
|
|
|
|
- "$path/*.jar"
|