add release

This commit is contained in:
f43nd1r 2019-09-16 23:24:47 +02:00
parent 732c61de9a
commit 2d556a15f5
2 changed files with 16 additions and 2 deletions

View file

@ -3,7 +3,7 @@ deploy:
provider: releases
api_key:
secure: jRY9FzaK5ThU9hsey9rpMH3E3SHZIIK1W2IRZjmjagMTCTACL7tN7JbdKqGR6zVuhCBTlLVsbEOa7tatW/eIwCfduQAAu4kxfrP5RGH1sOyWj0wCIhiu1sVVeSJAzdb8Qek6ambzEGG39XSqdoAXQKIh5XDyebw9TDbEWV5dqx0dHsrXZERagMFay0ShOUYYUINo8nuOD7VlF+Tc26jmDTJ85BDNsklMcel/s6PjAAD406XCKdHhJhGU6p7g/p4y8z1djUR+SS7Hu18phv1hWsZy6D+9G9UU7a1itLOpfzwvSozYvqxj/JmZjeGBElGof4vRYlwh1wifEQiqtS5HF3eRK8JEwdWE0ArEwp+wlgHiFUsw4PBP5GsuismM0Hero/lhTChKYWfmiW1aQ1INIC2vSuSTpjqitW44/0UcPwzkgpcGES2TZcmqE/kB9vByzUYPdGW9RcIy9S3biPpnOdw32D+Bcpc2kRLIa/MR4074nlP8OY7yQMpTKsle1s1Urq1HDeBdsVnN2TF+4VtM0myJ4VibRqaZXGu8UO1b3UDCrGj4iYHGyqF9FOwN2G0kSaRcyfQzx7ME82NnYU07ohAUhorsSS6wifzy1HsoSXSDJJQQV5Ud17waeWZQrjMq+Sy10WwVBgtexf9FMHfKdj0NS6oqScjgZU0nGHzkZ5g=
file: target/acrarium-*.war
file: acrarium/target/acrarium-*.war
file_glob: true
skip_cleanup: true
on:

View file

@ -18,10 +18,24 @@ project {
packaging 'pom'
groupId 'com.faendir'
artifactId 'parent'
version '1.0-SNAPSHOT'
version '0.9.0-SNAPSHOT'
modules {
module 'message-generator-maven-plugin'
module 'acrarium'
}
build {
plugins {
plugin {
artifactId 'maven-release-plugin'
version '2.5.3'
configuration {
autoVersionSubModules true
tagNameFormat 'v@{project.version}'
releaseProfile 'release'
}
}
}
}
}