m

maven-eclipse-plugin

The Eclipse Plugin is used to generate Eclipse IDE files (.project, .classpath and the .settings folder) from a POM.
Files download
File Operation
maven-eclipse-plugin-2.10.jar download
maven-eclipse-plugin-2.10.pom download
maven-eclipse-plugin-2.10-sources.jar download
Apache Maven
<dependency>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-eclipse-plugin</artifactId>
  <version>2.10</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'org.apache.maven.plugins:maven-eclipse-plugin:2.10'
Gradle Kotlin
implementation("org.apache.maven.plugins:maven-eclipse-plugin:2.10")
Scala SBT
libraryDependencies += "org.apache.maven.plugins" % "maven-eclipse-plugin" % "2.10"
Groovy Grape
@Grapes(
  @Grab(group='org.apache.maven.plugins', module='maven-eclipse-plugin', version='2.10')
)
Apache Ivy
<dependency org="org.apache.maven.plugins" name="maven-eclipse-plugin" rev="2.10" />
Leiningen
[org.apache.maven.plugins/maven-eclipse-plugin "2.10"]
Apache Buildr
'org.apache.maven.plugins:maven-eclipse-plugin:jar:2.10'