mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-07 07:45:32 +00:00
31 lines
649 B
Plaintext
31 lines
649 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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:idea`
|
|
|
|
- Generate only the project (`.ipr`) file:
|
|
|
|
`mvn idea:project`
|
|
|
|
- Generate only the workspace (`.iws`) file:
|
|
|
|
`mvn idea:workspace`
|
|
|
|
- Generate only module (`.iml`) files:
|
|
|
|
`mvn idea:module`
|
|
|
|
- Delete all generated project files:
|
|
|
|
`mvn idea:clean`
|