snippetbashTip
mvn idea — Generate IntelliJ IDEA project files (`.ipr`, `.iml`, and `.iws`) for a Maven project. Note: This pl
Viewed 0 times
intellijideacommandfilesmvn ideacligenerateproject
Problem
How to use the
mvn idea command: Generate IntelliJ IDEA project files (.ipr, .iml, and .iws) for a Maven project. Note: This plugin is retired. It is no longer maintained. More information: <https://maven.apache.org/plugins/maven-idea-plugin/usage.html>.Solution
mvn idea — Generate IntelliJ IDEA project files (.ipr, .iml, and .iws) for a Maven project. Note: This plugin is retired. It is no longer maintained. More information: <https://maven.apache.org/plugins/maven-idea-plugin/usage.html>.Generate all IntelliJ IDEA project files:
mvn idea:ideaGenerate only the project (
.ipr) file:mvn idea:projectGenerate only the workspace (
.iws) file:mvn idea:workspaceGenerate only module (
.iml) files:mvn idea:moduleDelete all generated project files:
mvn idea:cleanCode Snippets
Generate all IntelliJ IDEA project files
mvn idea:ideaGenerate only the project (`.ipr`) file
mvn idea:projectGenerate only the workspace (`.iws`) file
mvn idea:workspaceGenerate only module (`.iml`) files
mvn idea:moduleDelete all generated project files
mvn idea:cleanContext
tldr-pages: common/mvn idea
Revisions (0)
No revisions yet.