Skip to content

Commit 339a37c

Browse files
authoredNov 11, 2020
Jenkins build - Snapshots promotion during Nightly build (#957)
Signed-off-by: Radek Felcman <radek.felcman@oracle.com>
1 parent 1237484 commit 339a37c

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed
 

‎etc/jenkins/build.groovy

+12
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,18 @@ spec:
175175
}
176176
}
177177
}
178+
// Publish to snapshots
179+
stage('Publish to snapshots') {
180+
steps {
181+
container('el-build') {
182+
sshagent([SSH_CREDENTIALS_ID]) {
183+
sh """
184+
etc/jenkins/publish_snapshots.sh
185+
"""
186+
}
187+
}
188+
}
189+
}
178190
stage('Proceed test results') {
179191
steps {
180192
script {

‎etc/jenkins/publish_snapshots.sh

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/bin/bash -e
2+
#
3+
# Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
4+
#
5+
# This program and the accompanying materials are made available under the
6+
# terms of the Eclipse Distribution License v. 1.0, which is available at
7+
# http://www.eclipse.org/org/documents/edl-v10.php.
8+
#
9+
# SPDX-License-Identifier: BSD-3-Clause
10+
11+
#
12+
# Arguments:
13+
# N/A
14+
15+
echo '-[ EclipseLink Publish to Jakarta Snapshots ]-----------------------------------------------------------'
16+
. /etc/profile
17+
mvn --no-transfer-progress -U -C -B -V \
18+
-Psnapshots -DskipTests \
19+
-Ddoclint=none -Ddeploy \
20+
clean deploy

‎pom.xml

-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,6 @@
9595
</repositories>
9696

9797
<properties>
98-
<sonatypeOssDistMgmtNexusUrl>https://jakarta.oss.sonatype.org</sonatypeOssDistMgmtNexusUrl>
99-
<sonatypeOssDistMgmtStagingUrl>${sonatypeOssDistMgmtNexusUrl}/content/repositories/staging/</sonatypeOssDistMgmtStagingUrl>
100-
10198
<!-- TOOL Properties -->
10299
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
103100
<!-- PROJECT Properties -->

0 commit comments

Comments
 (0)
Please sign in to comment.