Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2015-04-13 15:22:44 +0000
committerMickael Istria2016-01-04 10:58:16 +0000
commit6e040948c097075d4d5709be82455330c6de0546 (patch)
treef114ea8f373fa63759e805123792ce5eb616b256 /org.eclipse.m2e.importer/plugin.xml
parent09ee83add6c1b56384d50f2faac2c1161fc07ab9 (diff)
downloadm2e-core-6e040948c097075d4d5709be82455330c6de0546.tar.gz
m2e-core-6e040948c097075d4d5709be82455330c6de0546.tar.xz
m2e-core-6e040948c097075d4d5709be82455330c6de0546.zip
[464535] Contribution to smart import mechanism
See https://wiki.eclipse.org/E4/UI/Smart_Import Change-Id: I070e84c33191679d919fa22196546d05c5bfd618 Signed-off-by: Mickael Istria <mistria@redhat.com>
Diffstat (limited to 'org.eclipse.m2e.importer/plugin.xml')
-rw-r--r--org.eclipse.m2e.importer/plugin.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/org.eclipse.m2e.importer/plugin.xml b/org.eclipse.m2e.importer/plugin.xml
new file mode 100644
index 00000000..d1d0b96e
--- /dev/null
+++ b/org.eclipse.m2e.importer/plugin.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<plugin>
+ <extension
+ point="org.eclipse.e4.ui.importer.projectConfigurators">
+ <projectConfigurator
+ class="org.eclipse.m2e.importer.internal.MavenProjectConfigurator"
+ label="Maven">
+ <activeWhen>
+ <hasFile
+ path="pom.xml">
+ </hasFile>
+ </activeWhen>
+ </projectConfigurator>
+ </extension>
+</plugin>

Back to the top