Skip to content

Commit

Permalink
Remove relocated eclipse-run plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
laeubi committed Feb 3, 2024
1 parent 23fbf61 commit 907caea
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 789 deletions.
1 change: 0 additions & 1 deletion tycho-extras/pom.xml
Expand Up @@ -37,7 +37,6 @@
<module>tycho-version-bump-plugin</module>
<module>tycho-p2-extras-plugin</module>
<module>tycho-custom-bundle-plugin</module>
<module>tycho-eclipserun-plugin</module>
<module>tycho-sourceref-jgit</module>
<module>target-platform-validation-plugin</module>
<module>tycho-pomless</module>
Expand Down
7 changes: 0 additions & 7 deletions tycho-extras/tycho-eclipserun-plugin/.gitignore

This file was deleted.

This file was deleted.

This file was deleted.

97 changes: 0 additions & 97 deletions tycho-extras/tycho-eclipserun-plugin/pom.xml

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions tycho-its/projects/TYCHO350ClassCastException/pom.xml
Expand Up @@ -12,8 +12,8 @@
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-eclipse-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
Expand Down
4 changes: 2 additions & 2 deletions tycho-its/projects/eclipserun.bundleStartLevel/pom.xml
Expand Up @@ -26,8 +26,8 @@
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-eclipse-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<repositories>
Expand Down
Expand Up @@ -18,19 +18,6 @@
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<pluginRepositories>
<pluginRepository>
<id>tycho-snapshots</id>
<url>${tycho-snapshots-url}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
<plugin>
Expand All @@ -40,8 +27,8 @@
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-eclipse-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<repositories>
Expand Down
@@ -0,0 +1,16 @@
package org.eclipse.tycho.test;

import org.apache.maven.it.Verifier;
import org.junit.Test;

public class EclipsePluginTest extends AbstractTychoIntegrationTest {

@Test
public void testDirectorStandalone() throws Exception {
Verifier verifier = getVerifier("tycho-eclipse-plugin/run-ant", true, true);
verifier.executeGoal("package");
verifier.verifyErrorFreeLog();
verifier.verifyFilePresent("target/.run.ok");
}

}

0 comments on commit 907caea

Please sign in to comment.