Skip to content

Commit 458976c

Browse files
authored
Merge branch 'eclipse-platform:master' into master
2 parents cfb8313 + 3acb4dc commit 458976c

11 files changed

Lines changed: 28 additions & 22 deletions

File tree

JenkinsJobs/Releng/deployToMaven.jenkinsfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,12 @@ pipeline {
161161
'''
162162
script {
163163
if ("${DEPLOYMENT_TYPE}" == 'release') {
164+
def repoTag = "${sourceRepository}".trim()
165+
if (repoTag.endsWith('/')) {
166+
repoTag = repoTag.substring(0, repoTag.length() - 1)
167+
}
168+
env.REPO_TAG = repoTag.substring(repoTag.lastIndexOf('/') + 1, repoTag.length())
169+
164170
// Documentation of the Central Portal Publisher API
165171
// - https://central.sonatype.org/publish/publish-portal-api
166172
// - https://central.sonatype.com/api-doc
@@ -172,7 +178,7 @@ pipeline {
172178
--header 'accept: text/plain' \
173179
--header 'Content-Type: multipart/form-data' \
174180
--form "bundle=@${PROJECT}-artifacts.zip" \
175-
'https://central.sonatype.com/api/v1/publisher/upload?publishingType=USER_MANAGED'
181+
"https://central.sonatype.com/api/v1/publisher/upload?name=${PROJECT^^}_${REPO_TAG}&publishingType=USER_MANAGED"
176182
''')
177183
writeFile(file: "${WORKSPACE}/deploymentId-${PROJECT}.txt", text: "${deploymentId}")
178184
waitUntil(initialRecurrencePeriod: 5_000) {

cje-production/dockerfiles/opensuse-gtk3-metacity/15-gtk3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM opensuse/leap:15@sha256:039283c971f917bfd2ac9d51f259ce5eff1b7e92716aeaf07446be9c97f77d2e
1+
FROM opensuse/leap:15@sha256:f2c9408ba749d229fe09fbdfd36f4e87bbb77b77fb55c58a28ff93595cab9fd2
22

33
### user name recognition at runtime w/ an arbitrary uid - for OpenShift deployments
44
COPY scripts/uid_entrypoint /usr/local/bin/uid_entrypoint

eclipse.jdt.ui

eclipse.platform

Submodule eclipse.platform updated 36 files

eclipse.platform.releng.prereqs.sdk/eclipse-sdk-prereqs.target

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -714,73 +714,73 @@
714714
<dependency>
715715
<groupId>org.junit.jupiter</groupId>
716716
<artifactId>junit-jupiter-api</artifactId>
717-
<version>5.13.3</version>
717+
<version>5.13.4</version>
718718
<type>jar</type>
719719
</dependency>
720720
<dependency>
721721
<groupId>org.junit.jupiter</groupId>
722722
<artifactId>junit-jupiter-engine</artifactId>
723-
<version>5.13.3</version>
723+
<version>5.13.4</version>
724724
<type>jar</type>
725725
</dependency>
726726
<dependency>
727727
<groupId>org.junit.jupiter</groupId>
728728
<artifactId>junit-jupiter-migrationsupport</artifactId>
729-
<version>5.13.3</version>
729+
<version>5.13.4</version>
730730
<type>jar</type>
731731
</dependency>
732732
<dependency>
733733
<groupId>org.junit.jupiter</groupId>
734734
<artifactId>junit-jupiter-params</artifactId>
735-
<version>5.13.3</version>
735+
<version>5.13.4</version>
736736
<type>jar</type>
737737
</dependency>
738738
<dependency>
739739
<groupId>org.junit.platform</groupId>
740740
<artifactId>junit-platform-commons</artifactId>
741-
<version>1.13.3</version>
741+
<version>1.13.4</version>
742742
<type>jar</type>
743743
</dependency>
744744
<dependency>
745745
<groupId>org.junit.platform</groupId>
746746
<artifactId>junit-platform-engine</artifactId>
747-
<version>1.13.3</version>
747+
<version>1.13.4</version>
748748
<type>jar</type>
749749
</dependency>
750750
<dependency>
751751
<groupId>org.junit.platform</groupId>
752752
<artifactId>junit-platform-launcher</artifactId>
753-
<version>1.13.3</version>
753+
<version>1.13.4</version>
754754
<type>jar</type>
755755
</dependency>
756756
<dependency>
757757
<groupId>org.junit.platform</groupId>
758758
<artifactId>junit-platform-runner</artifactId>
759-
<version>1.13.3</version>
759+
<version>1.13.4</version>
760760
<type>jar</type>
761761
</dependency>
762762
<dependency>
763763
<groupId>org.junit.platform</groupId>
764764
<artifactId>junit-platform-suite-api</artifactId>
765-
<version>1.13.3</version>
765+
<version>1.13.4</version>
766766
<type>jar</type>
767767
</dependency>
768768
<dependency>
769769
<groupId>org.junit.platform</groupId>
770770
<artifactId>junit-platform-suite-commons</artifactId>
771-
<version>1.13.3</version>
771+
<version>1.13.4</version>
772772
<type>jar</type>
773773
</dependency>
774774
<dependency>
775775
<groupId>org.junit.platform</groupId>
776776
<artifactId>junit-platform-suite-engine</artifactId>
777-
<version>1.13.3</version>
777+
<version>1.13.4</version>
778778
<type>jar</type>
779779
</dependency>
780780
<dependency>
781781
<groupId>org.junit.vintage</groupId>
782782
<artifactId>junit-vintage-engine</artifactId>
783-
<version>5.13.3</version>
783+
<version>5.13.4</version>
784784
<type>jar</type>
785785
</dependency>
786786
<dependency>

eclipse.platform.swt

Submodule eclipse.platform.swt updated 26 files

0 commit comments

Comments
 (0)