Skip to content
Snippets Groups Projects
Commit e78b0c9b authored by Stefan E. Funk's avatar Stefan E. Funk
Browse files

mc

parent f46b070b
No related branches found
No related tags found
No related merge requests found
...@@ -14,23 +14,23 @@ node { ...@@ -14,23 +14,23 @@ node {
def pom = readMavenPom file: './pom.xml' def pom = readMavenPom file: './pom.xml'
def pVersion = pom.version def pVersion = pom.version
sh ''' sh """
fpm -t deb -a noarch -s dir --name tgauth \ fpm -t deb -a noarch -s dir --name tgauth \
--description='TextGrid Auth' \ --description='TextGrid Auth' \
--maintainer='DARIAH-DE <info@de.dariah.eu>' \ --maintainer='DARIAH-DE <info@de.dariah.eu>' \
--vendor='DARIAH-DE' \ --vendor='DARIAH-DE' \
--url='https://textgrid.de' \ --url='https://textgrid.de' \
--iteration $BUILD_NUMBER \ --iteration $BUILD_NUMBER \
--version $pVersion \ --version ${pVersion} \
-x ".git**" \ -x '.git**' \
-x "**/.git**" \ -x '**/.git**' \
-x "**/.hg**" \ -x '**/.hg**' \
-x "**/.svn**" \ -x '**/.svn**' \
-x ".buildinfo" \ -x '.buildinfo' \
-x "**/*.deb" \ -x '**/*.deb' \
--prefix /var/www/tgauth \ --prefix /var/www/tgauth \
-C info.textgrid.middleware.tgauth.rbac . -C info.textgrid.middleware.tgauth.rbac .
''' """
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment