mirror of
https://github.com/valitydev/googlepay-provider.git
synced 2024-11-06 09:15:21 +00:00
5268a8d657
* Bump java version * Add build_utils * Fix tests * Add more lombok anotation * Return toString in card object * Update pom.xml Co-Authored-By: Pavel Popov <tolkonepiu@users.noreply.github.com> * Add jacoco * Add registry value * Add metrics * Bump shared resources * Bump base java image * Add name for metrics
18 lines
571 B
Groovy
18 lines
571 B
Groovy
#!groovy
|
|
build('googlepay-provider', 'java-maven') {
|
|
checkoutRepo()
|
|
loadBuildUtils()
|
|
|
|
def javaServicePipeline
|
|
runStage('load JavaService pipeline') {
|
|
javaServicePipeline = load("build_utils/jenkins_lib/pipeJavaService.groovy")
|
|
}
|
|
|
|
def serviceName = env.REPO_NAME
|
|
def mvnArgs = '-DjvmArgs="-Xmx256m"'
|
|
def useJava11 = true
|
|
def registry = 'dr2.rbkmoney.com'
|
|
def registryCredsId = 'jenkins_harbor'
|
|
|
|
javaServicePipeline(serviceName, useJava11, mvnArgs, registry, registryCredsId)
|
|
} |