mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 00:05:50 +00:00
97658
This commit is contained in:
parent
69faf3d59b
commit
d85bc7f497
1 changed files with 7 additions and 8 deletions
15
jenkinsfile
15
jenkinsfile
|
@ -6,6 +6,9 @@ pipeline {
|
||||||
triggers {
|
triggers {
|
||||||
pollSCM('* * * * *')
|
pollSCM('* * * * *')
|
||||||
}
|
}
|
||||||
|
tool {
|
||||||
|
jdk 'JDK-17'
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('vcs') {
|
stage('vcs') {
|
||||||
steps {
|
steps {
|
||||||
|
@ -18,18 +21,14 @@ pipeline {
|
||||||
rtMavenDeployer (
|
rtMavenDeployer (
|
||||||
id: "SPC_DEPLOYER",
|
id: "SPC_DEPLOYER",
|
||||||
serverId: "JFROG_CLOUD",
|
serverId: "JFROG_CLOUD",
|
||||||
releaseRepo: 'yadu-libs-release-local',
|
releaseRepo: 'uday-libs-release-local',
|
||||||
snapshotRepo: 'yadu-libs-snapshot-local'
|
snapshotRepo: 'uday-libs-snapshot-local'
|
||||||
)
|
)
|
||||||
rtMavenRun (
|
rtMavenRun (
|
||||||
tool: {" maven 3.9"
|
tool: 'maven 3.9',
|
||||||
'JDK-17'}
|
|
||||||
pom: 'pom.xml',
|
pom: 'pom.xml',
|
||||||
goals: 'clean install',
|
goals: 'clean install',
|
||||||
deployerId: "SPC_DEPLOYER"
|
deployerId: "SPC_DEPLOYER
|
||||||
//,
|
|
||||||
//buildName: "${JOB_NAME}",
|
|
||||||
//buildNumber: "${BUILD_ID}"
|
|
||||||
)
|
)
|
||||||
rtPublishBuildInfo (
|
rtPublishBuildInfo (
|
||||||
serverId: "JFROG_CLOUD"
|
serverId: "JFROG_CLOUD"
|
||||||
|
|
Loading…
Reference in a new issue