Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2013-11-23 22:25:52 +0000
committerIgor Fedorenko2013-11-23 22:25:52 +0000
commite69dfe4219c7aba15b365c39d32900f1765c71b7 (patch)
tree893eec38355deaef85855452d82935b58f376482
parentc908f00258d26e1604bf31e803a23b1230fbb2d6 (diff)
downloadm2e-core-e69dfe4219c7aba15b365c39d32900f1765c71b7.tar.gz
m2e-core-e69dfe4219c7aba15b365c39d32900f1765c71b7.tar.xz
m2e-core-e69dfe4219c7aba15b365c39d32900f1765c71b7.zip
cleanup: removed remnants of maven plugin development support
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
-rw-r--r--org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java4
-rw-r--r--org.eclipse.m2e.lifecyclemapping.defaults/lifecycle-mapping-metadata.xml23
2 files changed, 0 insertions, 27 deletions
diff --git a/org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java b/org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java
index 546caa2f..2782e976 100644
--- a/org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java
+++ b/org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java
@@ -189,10 +189,6 @@ public class MavenRuntimeLaunchSupport {
// m2.conf
properties.appendProperty("classworlds.conf", quote(cwconfFile.getAbsolutePath())); //$NON-NLS-1$
- // maven bootclasspath, i.e. classworlds jar.
- // TODO only used by ITs, so consider making optional
- properties.appendProperty("maven.bootclasspath", quote(MavenLaunchUtils.toPath(getBootClasspath())));
-
return properties;
}
diff --git a/org.eclipse.m2e.lifecyclemapping.defaults/lifecycle-mapping-metadata.xml b/org.eclipse.m2e.lifecyclemapping.defaults/lifecycle-mapping-metadata.xml
index c7c14d20..7e473346 100644
--- a/org.eclipse.m2e.lifecyclemapping.defaults/lifecycle-mapping-metadata.xml
+++ b/org.eclipse.m2e.lifecyclemapping.defaults/lifecycle-mapping-metadata.xml
@@ -2,29 +2,6 @@
<lifecycleMappingMetadata>
<lifecycleMappings>
<lifecycleMapping>
- <packagingType>maven-plugin</packagingType>
- <lifecycleMappingId>org.eclipse.m2e.jdt.JarLifecycleMapping</lifecycleMappingId>
- <pluginExecutions>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-plugin-plugin</artifactId>
- <versionRange>[2.3,)</versionRange>
- <goals>
- <goal>descriptor</goal>
- <goal>helpmojo</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <execute>
- <runOnIncremental>false</runOnIncremental>
- </execute>
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMapping>
-
- <lifecycleMapping>
<packagingType>war</packagingType>
<lifecycleMappingId>org.eclipse.m2e.jdt.JarLifecycleMapping</lifecycleMappingId>
</lifecycleMapping>

Back to the top