Skip to content
This repository was archived by the owner on Aug 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ pipeline {
agent {
label "ubuntu-latest"
}
environment {
MAVEN_OPTS = "-Dbuild.sysclasspath=ignore -Dincludeantruntime=false"
}
tools {
maven 'apache-maven-latest'
jdk 'temurin-jdk17-latest'
Expand All @@ -19,17 +16,15 @@ pipeline {
steps {
wrap([$class: 'Xvnc', useXauthority: true]) {
sh """
mvn clean verify --batch-mode --fail-at-end -Dmaven.repo.local=$WORKSPACE/.m2/repository \
-Pbuild-individual-bundles -Pbree-libs -Papi-check \
-DskipTests=false -Dcompare-version-with-baselines.skip=false \
-Dproject.build.sourceEncoding=UTF-8 \
-Dbuild.sysclasspath=ignore -Dincludeantruntime=false
mvn clean verify \
--batch-mode \
--fail-at-end \
-Dmaven.repo.local=$WORKSPACE/.m2/repository
"""
}
}
post {
always {
archiveArtifacts artifacts: '*.log,*/target/work/data/.metadata/*.log,*/tests/target/work/data/.metadata/*.log,apiAnalyzer-workspace/.metadata/*.log', allowEmptyArchive: true
publishIssues issues:[scanForIssues(tool: java()), scanForIssues(tool: mavenConsole())]
}
}
Expand Down
23 changes: 2 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,35 +15,16 @@
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.eclipse</groupId>
<artifactId>eclipse-platform-parent</artifactId>
<version>4.36.0-SNAPSHOT</version>
<relativePath>../eclipse-platform-parent</relativePath>
</parent>

<groupId>eclipse.images</groupId>
<artifactId>org.eclipse.images.parent</artifactId>
<version>4.36.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Eclipse Images</name>

<properties>
<tycho.scmUrl>scm:git:https://github.com/eclipse-platform/eclipse.platform.images.git</tycho.scmUrl>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>eclipse-hosted</id>
<url>https://repo.eclipse.org/content/repositories/eclipse/</url>
</repository>
</repositories>

<modules>
<module>org.eclipse.images</module>
<module>org.eclipse.images.renderer</module>
Expand Down