Questions tagged [maven-eclipse-plugin]

An Eclipse plug-in for generating Eclipse IDE files, like .classpath, .project, etc. Often confused with M2Eclipse.

One of two leading plug-ins integrating Eclipse IDE with Maven. As opposed to M2Eclipse, it focuses on generating Eclipse project files on demand, rather than full, live integration with Eclipse build.

Beware this plugin has been officially RETIRED and it is no longer maintained.

Users are advised to use m2e, the Eclipse Maven Integration instead of this plugin, as it can more closely resemble the actual build and runtime classpaths as described in the project pom.xml - among other advantages. However, there are project setups and workflows that still work more efficiently with statically generated Eclipse metadata - for example when there is a large number of projects in a reactor. That's where the Maven Eclipse Plugin can still help you

More info

72 questions
1
vote
0 answers

Directory contents for maven project with eclipse

We have a multi-module maven project which has configuration for findbugs & checkstyle to run with maven builds. I want this configuration to be in sync with eclipse without having to commit IDE specific files like .project, .settings, .checkstyle…
Mukund Jalan
  • 1,145
  • 20
  • 39
1
vote
1 answer

Apache Zeppelin: Trying to build from from source code but zeppelin-web fails

I cloned the 'master' copy of Apache Zeppelin from https://github.com/apache/zeppelin in my Eclipse workspace and followed the steps for installation given as follows: Created a new Java project and imported zeppelin. Converted it into a Maven…
hrshd
  • 941
  • 2
  • 13
  • 19
1
vote
2 answers

AspectJ is not getting added to classpath with eclipse:eclipse

I'm executing the following command, mvn org.apache.maven.plugins:maven-eclipse-plugin:2.6:clean \ org.apache.maven.plugins:maven-eclipse-plugin:2.6:eclipse My all the dependencies are coming in classpath but AspectJ is not added to the…
srinannapa
  • 3,085
  • 8
  • 49
  • 66
1
vote
2 answers

How can I configure additional eclipse settings with m2eclipse?

With the maven eclipse plugin, I can configure checkstyle or sonar configurations by adding the necessary invocations to the pom.xml and calling "mvn eclipse:eclipse" to create the project configuration. Some members of my team want to just use…
Hakan
  • 537
  • 4
  • 13
1
vote
1 answer

Unable to load the mojo 'org.apache.maven.plugins:maven-eclipse-plugin:2.6:eclipse'

when we are trying to run mvn eclipse:eclipse from command line, we are getting following error: Internal error in the plugin manager executing goal 'org.apache.maven.plugins:maven-eclipse-plugin:2.6:eclipse': Unable to load the mojo …
Madhu V Rao
  • 917
  • 1
  • 12
  • 24
1
vote
2 answers

Exception in compiling groovy & java using maven

My groovy file contains: @Grapes([ @Grab('org.codehaus.groovy.modules.http-builder:http-builder:0.7'), @Grab('org.apache.httpcomponents:httpmime:4.5.1') ]) .......code I am trying to compile groovy and java code. But I am getting below…
LifeIsButifool
  • 129
  • 2
  • 12
1
vote
2 answers

Can maven eclipse plugin to generate artifacts so that src/main is on top of src/test?

When I generate eclipse artifacts, Eclipse shows the source folder in this order. src/test/java src/test/resources src/main/java src/main/resources I would prefer, src/main/java src/main/resources src/test/java src/test/resources Thanks in advance!
Andy
  • 8,841
  • 8
  • 45
  • 68
1
vote
2 answers

Convert java plugin into maven project with eclipse-plugin packaging

I am quite experienced with java but i'm using maven for the first time. i have installed Eclipse Kepler (Eclipse for RCP and RAP Developers), I have installed Tychus as well with the "add new software" button. There is an Internet of things project…
Cassifiore
  • 89
  • 1
  • 10
1
vote
1 answer

How to change project name in .project created from mvn eclipse:eclipse?

Here is the content of my pom.xml
Nageswaran
  • 7,481
  • 14
  • 55
  • 74
1
vote
1 answer

Eclipse & NetBeans and using SVN & Maven

I have an issue, I've created a Maved project with Eclipse, and committed into a SVN repository. from here I tried two approaches: Import the project into NetBeans from the folder of Eclipse workspace. Check the project out of the repository into…
TacB0sS
  • 10,106
  • 12
  • 75
  • 118
1
vote
1 answer

How to create a nodejs archetype from maven

The current default nature of the project is 'org.eclipse.jdt.core.javanature' (Java nature) But I want change the default nature of the project to org.nodeclipse.ui.NodeNature' (nodejs). Where should I specify this plugin in the maven archetype and…
eagerToLearn
  • 429
  • 1
  • 10
  • 20
1
vote
0 answers

Maven for static web project

I'm trying to add a wst.web facet for a multimodule maven project on eclipse. This wst.web facet is "Static web project" You would say "why is he using maven for this?" The point is that the whole project is a tree. I have a parent pom in the root…
1
vote
0 answers

Unable to add jar from local maven repository into the project classpath

I can see the jar in my local maven repository but still I am getting classpath issues on executing maven clean install. pom.xml -
sjain
  • 23,126
  • 28
  • 107
  • 185
1
vote
1 answer

Include java webapp lib in maven build

I was having a dynamic webapplication created on eclipse. I converted it to a maven project using M2E plugin. I added maven war plugin in the pom.xml so that it can create war for my project using maven build. But when I do the build, it fails to…
Neeraj
  • 1,776
  • 2
  • 16
  • 35
1
vote
1 answer

deployment assembly using maven-eclipse-plugin

I am using maven-eclipse-plugin for working with a war project. This war project uses maven overlay method to include another war. When I deploy it using Maven, everything goes well. When I test the war locally in eclipse, it fails because the…