File tree 3 files changed +32
-3
lines changed
3 files changed +32
-3
lines changed Original file line number Diff line number Diff line change @@ -175,6 +175,18 @@ spec:
175
175
}
176
176
}
177
177
}
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
+ }
178
190
stage(' Proceed test results' ) {
179
191
steps {
180
192
script {
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 95
95
</repositories >
96
96
97
97
<properties >
98
- <sonatypeOssDistMgmtNexusUrl >https://jakarta.oss.sonatype.org</sonatypeOssDistMgmtNexusUrl >
99
- <sonatypeOssDistMgmtStagingUrl >${sonatypeOssDistMgmtNexusUrl}/content/repositories/staging/</sonatypeOssDistMgmtStagingUrl >
100
-
101
98
<!-- TOOL Properties -->
102
99
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
103
100
<!-- PROJECT Properties -->
You can’t perform that action at this time.
0 commit comments