Skip to content
This repository was archived by the owner on Aug 11, 2025. It is now read-only.

Commit 15dfef1

Browse files
laeubiakurtakov
authored andcommitted
Remove parent pom dependency
1 parent 8df8427 commit 15dfef1

2 files changed

Lines changed: 6 additions & 30 deletions

File tree

Jenkinsfile

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ pipeline {
77
agent {
88
label "ubuntu-latest"
99
}
10-
environment {
11-
MAVEN_OPTS = "-Dbuild.sysclasspath=ignore -Dincludeantruntime=false"
12-
}
1310
tools {
1411
maven 'apache-maven-latest'
1512
jdk 'temurin-jdk17-latest'
@@ -19,17 +16,15 @@ pipeline {
1916
steps {
2017
wrap([$class: 'Xvnc', useXauthority: true]) {
2118
sh """
22-
mvn clean verify --batch-mode --fail-at-end -Dmaven.repo.local=$WORKSPACE/.m2/repository \
23-
-Pbuild-individual-bundles -Pbree-libs -Papi-check \
24-
-DskipTests=false -Dcompare-version-with-baselines.skip=false \
25-
-Dproject.build.sourceEncoding=UTF-8 \
26-
-Dbuild.sysclasspath=ignore -Dincludeantruntime=false
19+
mvn clean verify \
20+
--batch-mode \
21+
--fail-at-end \
22+
-Dmaven.repo.local=$WORKSPACE/.m2/repository
2723
"""
2824
}
2925
}
3026
post {
3127
always {
32-
archiveArtifacts artifacts: '*.log,*/target/work/data/.metadata/*.log,*/tests/target/work/data/.metadata/*.log,apiAnalyzer-workspace/.metadata/*.log', allowEmptyArchive: true
3328
publishIssues issues:[scanForIssues(tool: java()), scanForIssues(tool: mavenConsole())]
3429
}
3530
}

pom.xml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,35 +15,16 @@
1515
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1616
<modelVersion>4.0.0</modelVersion>
1717

18-
<parent>
19-
<groupId>org.eclipse</groupId>
20-
<artifactId>eclipse-platform-parent</artifactId>
21-
<version>4.36.0-SNAPSHOT</version>
22-
<relativePath>../eclipse-platform-parent</relativePath>
23-
</parent>
24-
2518
<groupId>eclipse.images</groupId>
2619
<artifactId>org.eclipse.images.parent</artifactId>
20+
<version>4.36.0-SNAPSHOT</version>
2721
<packaging>pom</packaging>
2822
<name>Eclipse Images</name>
2923

3024
<properties>
31-
<tycho.scmUrl>scm:git:https://github.com/eclipse-platform/eclipse.platform.images.git</tycho.scmUrl>
25+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3226
</properties>
3327

34-
<repositories>
35-
<repository>
36-
<releases>
37-
<enabled>true</enabled>
38-
</releases>
39-
<snapshots>
40-
<enabled>true</enabled>
41-
</snapshots>
42-
<id>eclipse-hosted</id>
43-
<url>https://repo.eclipse.org/content/repositories/eclipse/</url>
44-
</repository>
45-
</repositories>
46-
4728
<modules>
4829
<module>org.eclipse.images</module>
4930
<module>org.eclipse.images.renderer</module>

0 commit comments

Comments
 (0)