//
you're reading...

Frameworks,Maven

How to convert maven java project to IntelliJ Idea project

We have learned that how to create a simple java project in maven and also how to convert it to support eclipse IDE.Sometimes developers environment consist of IntelliJ IDE instead of eclipse. So, lets learn about converting it to support IntelliJ also.

Using an example to demonstrate is always a good way. So, lets see an example:

1) Create sample maven project

mvn archetype:generate -DgroupId=com.howtodoinjava -DartifactId=intelliJDemo
-DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

2) Generate ant script from pom.xml

cd intelliJDemo
mvn idea:idea

3) Above command will download the project plugins for IntelliJ. And, above command will also create the project file (.ipr), module file (.iml) and workspace file (.iws).

maven_intellij

Happy Learning !!

Reference: http://maven.apache.org/plugins/maven-idea-plugin/index.html

Discussion

No comments yet.

Leave a comment

Enter your email address to receive notifications of new posts by email.

  • Latest Updates

    • Reading/writing excel files in java : POI tutorial ... 10 hours ago
    • Popular HashMap and ConcurrentHashMap interview questions ... 5 days ago
    • 8 signs of bad unit test cases ... 1 week ago
    • 5 class design principles [S.O.L.I.D.] in java ... 1 week ago

Copyright Information