Skip to content

Commit

Permalink
Merge pull request #194 from eclipse/cd_crapedicrap
Browse files Browse the repository at this point in the history
remove ExecutionEnvironment config nobody knows why it is there
  • Loading branch information
cdietrich committed Jul 29, 2021
2 parents ca6656b + 9c1dae2 commit 6d8d1a9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 32 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pipeline {
agent {
kubernetes {
label 'migration'
label 'centos-7'
}
}

Expand Down Expand Up @@ -75,7 +75,7 @@ pipeline {
stage ('Build') {
steps {
wrap([$class: 'Xvnc', takeScreenshot: false, useXauthority: true]) {
withMaven(jdk: 'adoptopenjdk-hotspot-jdk8-latest', maven: 'apache-maven-latest', options: [junitPublisher(disabled: true), openTasksPublisher(disabled: true)]) {
withMaven(jdk: 'adoptopenjdk-hotspot-jdk11-latest', maven: 'apache-maven-latest', options: [junitPublisher(disabled: true), openTasksPublisher(disabled: true)]) {
dir ('git-repo') {
sh '''
if [ "${BRANCH_NAME}" == "master" ] || [ "${RELEASE_TYPE}" != "Integration" ] || [ "${FORCE_PUBLISH}" == "true" ]; then
Expand Down
3 changes: 1 addition & 2 deletions maven/org.eclipse.emf.mwe2.parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<properties>
<tycho-qualifier>yyyyMMdd-HHmm</tycho-qualifier>

<tycho-version>1.7.0</tycho-version>
<tycho-version>2.4.0</tycho-version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven-install-version>2.5.2</maven-install-version>
Expand Down Expand Up @@ -130,7 +130,6 @@
</requirement>
</extraRequirements>
</dependency-resolution>
<executionEnvironment>JavaSE-1.8</executionEnvironment>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<unit id="org.eclipse.platform.feature.group" version="0.0.0"/>
<unit id="org.eclipse.pde.feature.group" version="0.0.0"/>
<unit id="org.eclipse.draw2d.feature.group" version="0.0.0"/>
<repository location="https://download.eclipse.org/releases/oxygen/201804111000"/>
<repository location="https://download.eclipse.org/releases/2021-06"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.emf.sdk.feature.group" version="0.0.0"/>
Expand All @@ -34,7 +34,7 @@
<unit id="org.junit" version="0.0.0"/>
<unit id="com.google.guava" version="30.1.0.v20210127-2300"/>
<unit id="com.google.guava.source" version="30.1.0.v20210127-2300"/>
<repository location="https://download.eclipse.org/tools/orbit/downloads/2021-03"/>
<repository location="https://download.eclipse.org/tools/orbit/downloads/2021-06"/>
</location>
</locations>
</target>
26 changes: 0 additions & 26 deletions plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,6 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-pack200a-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>pack200-normalize</id>
<goals>
<goal>normalize</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
Expand All @@ -76,19 +63,6 @@
<skip>${sign.skip}</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-pack200b-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>pack200-pack</id>
<goals>
<goal>pack</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
Expand Down

0 comments on commit 6d8d1a9

Please sign in to comment.