java - maven plugin to create intellij files? -
is there maven plugin create intellij files?
i have maven project generate intellij files can import ide. know there eclipse plugin: http://maven.apache.org/plugins/maven-eclipse-plugin/
and found plugin intellij says retired, wasn't sure whether should using else: http://maven.apache.org/plugins/maven-idea-plugin/
i'm following tutorial wants me use eclipse use intellij. pom.xml of tutorial uses eclipse plugin these configurations:
<plugin> <groupid>org.eclipse.m2e</groupid> <artifactid>lifecycle-mapping</artifactid> <version>1.0.0</version> <configuration> <lifecyclemappingmetadata> <pluginexecutions> <pluginexecution> <pluginexecutionfilter> <groupid> org.apache.felix </groupid> <artifactid> maven-scr-plugin </artifactid> <versionrange> [1.0.0,) </versionrange> <goals> <goal>scr</goal> </goals> </pluginexecutionfilter> <action> <ignore/> </action> </pluginexecution> </pluginexecutions> </lifecyclemappingmetadata> </configuration> </plugin>
if try open project in intellij none of imports work..
you can open maven projects directly intellij:
file → import project → "import project external model (maven)"
Comments
Post a Comment