mirror of
https://github.com/valitydev/daway.git
synced 2024-11-06 08:35:23 +00:00
16 lines
384 B
Groovy
16 lines
384 B
Groovy
#!groovy
|
|
build('newway', 'java-maven') {
|
|
checkoutRepo()
|
|
loadBuildUtils()
|
|
|
|
def javaServicePipeline
|
|
runStage('load JavaService pipeline') {
|
|
javaServicePipeline = load("build_utils/jenkins_lib/pipeJavaServiceInsideDocker.groovy")
|
|
}
|
|
|
|
def serviceName = env.REPO_NAME
|
|
def mvnArgs = '-DjvmArgs="-Xmx256m"'
|
|
|
|
javaServicePipeline(serviceName, mvnArgs)
|
|
}
|