MVN

maven : maven-idea-plugin

Maven & Gradle

Apr 30, 2007

Maven IDEA Plug-in · IDEA Plugin for Maven.

<dependency>
    <groupId>maven</groupId>
    <artifactId>maven-idea-plugin</artifactId>
    <version>1.7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of maven : maven-idea-plugin to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.7

All Versions

Choose a version of maven : maven-idea-plugin to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.7
maven-idea-plugin-1.7
1.6
maven-idea-plugin-1.6
1.5
maven-idea-plugin-1.5
1.4
maven-idea-plugin-1.4
1.3
maven-idea-plugin-1.3

How to add a dependency to Maven

Add the following maven : maven-idea-plugin maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>maven</groupId>
    <artifactId>maven-idea-plugin</artifactId>
    <version>1.7</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following maven : maven-idea-plugin gradle dependency to your build.gradle file:

implementation 'maven:maven-idea-plugin:1.7'

Gradle Kotlin DSL: Add the following maven : maven-idea-plugin gradle kotlin dependency to your build.gradle.kts file:

implementation("maven:maven-idea-plugin:1.7")

How to add a dependency to SBT Scala

SBT Scala: Add the following maven : maven-idea-plugin sbt scala dependency to your build.sbt file:

libraryDependencies += "maven" % "maven-idea-plugin" % "1.7"

Advertisement