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

Update README

Remove old Jenkinsfile
parent 7469306b
No related branches found
No related tags found
No related merge requests found
node {
def mvnHome
stage('Preparation') {
mvnHome = tool 'Maven 3.5.0'
checkout scm
}
stage('Build') {
sh "'${mvnHome}/bin/mvn' -U clean deploy -Pdhrep.deb"
}
stage('Publish') {
def pom = readMavenPom file: 'oaipmh-webapp/pom.xml'
def pName = pom.artifactId
def pVersion = pom.parent.version
def snapshot = pVersion.contains("SNAPSHOT")
if (snapshot) {
doDebSnapshot(pName, 'oaipmh-webapp/target', pVersion)
}
else {
doDebRelease(pName, 'oaipmh-webapp/target', pVersion)
}
}
}
......@@ -218,6 +218,6 @@ License
See LICENCE_
.. _LICENCE: https://projects.gwdg.de/projects/oai-pmh/repository/revisions/master/entry/LICENSE.txt
.. _oaipmh_sources: https://projects.gwdg.de/projects/oai-pmh/repository
.. _oaipmh_bugtracking: https://projects.gwdg.de/projects/dariah-de-repository/work_packages
.. _LICENCE: https://gitlab.gwdg.de/dariah-de/dariah-de-oai-pmh-services/-/blob/main/LICENSE.txt
.. _oaipmh_sources: https://gitlab.gwdg.de/dariah-de/dariah-de-oai-pmh-services/
.. _oaipmh_bugtracking: https://gitlab.gwdg.de/dariah-de/dariah-de-oai-pmh-services/-/issues
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment