0
votes
1answer
144 views

Eclipse can't execute jdk1.7.0/bin/java, error=13, permission denied

I have a maven web app project in Eclipse Juno, when I execute the project with Goals: clean install tomcat:run, an error prompt: Exception occurred executing command line. Cannot run program ...
1
vote
0answers
54 views

Can't get the maven file to work

I am trying to create a simple maven application in eclipse. I am using Spring. I added the following line in the following line in the tomcat server.xml <Context ...
0
votes
1answer
61 views

mvn:deploy can not invoke tomcat manager

I am using mvn2, when I am trying to deploy my project using mvn:deploy command I am having error can not invoke Tomcat manager connection refused: connect below is my pom configuration ...
1
vote
1answer
45 views

deploying a war-project with maven-phase execution

I specified a plugin (in the pom.xml) with an execution that should be execute in the process-resources phase. So once I start the project, it executes the goal(a change in the database with ...
0
votes
1answer
455 views

Deployed null when using embedded glassfish server

after reading several tutorials (e.g. ocpsoft, oracle) I started to use embedded glassfish for running my hello-world app. It does work with the remote server but for some reason nothing is deployed ...
3
votes
2answers
2k views

Maven not using the local repo

I'm using maven without m2e, my mvn install is failing because a plugin is not available anymore on maven central. I'm working with an old pom.xml dating from 2008 and must uses maven-cdk-plugin ...
0
votes
0answers
172 views

Jcodemodel to generate class

I have a generated Interface classes in my maven project. I am trying to generate a java code for implementation class using jcodemodel. Kindly help me to write jcode class to generate the following ...
1
vote
1answer
300 views

Code generation using Jcodemodel

I am trying to generate java code using jcodemodel in my maven project. My maven project has three modules. I have written a sample jcodemodel in one of my module for testing purpose.But when i ...
0
votes
1answer
49 views

JCodeModel in maven project

I am new to use JCodeModel. could anyone provide me a simple demo or link how to use JCodeModel in maven project? Where do I need to exatly place the JCodeModel class in maven to generate java class?
2
votes
3answers
3k views

Failed to resolve artifact. Missing: -------— 1) org.codehaus.mojo:gwt-maven-plugin:jar:1.3-SNAPSHOT

i want to use the addon vaadin Timeline, so i have to make "gwt-maven-plugin 3.1" as i know ,my pom.xml is the following : <?xml version="1.0"?> <project ...
2
votes
2answers
6k views

Could not calculate build plan :artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.4.3 is not available in the local repository

i have a spring maven 2 project i built it in terminal and everything is ok, i got build success but when trying to import it to eclipse i got this error: Could not calculate build plan: The ...
2
votes
2answers
1k views

How can I run a GWT app from gwt-maven-plugin without any browser plugins?

For a GWT application which I build with the GWT Maven Plugin (gwt-maven-plugin), I can run the GWT Development environment with mvn compile war:exploded gwt:run and then launch a browser. This ...
4
votes
2answers
3k views

Maven Embedded Glassfish Plugin - Datasource and JDBC driver

I'm trying to follow this approach to create a datasource for embedded glassfish. The only significant difference between the tutorial and my code is that I'm running the server using the official ...
1
vote
0answers
563 views

Maven site command fails : looking for pmd plugin : I don't need it

This is my pom file reporting section: <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> ...
0
votes
1answer
312 views

Maven site command fails

I'm trying to get maven site working, but I'm blocked on this error. [INFO] Failed to resolve artifact. Failed to resolve artifact, possibly due to a repository list that is not ...
0
votes
1answer
233 views

Maven Unable to copy an artifact to the working directory

i am using maven i don't have more knowledge about maven when i am install my project then it will successfully build but when i am test my project with maven it will give me an error like Unable to ...
1
vote
2answers
2k views

Set up Eclipse to work with Java EE

First note that I'm new to EE and particulary to Eclipse (I'm seriosly working with Eclipse for the second time in my life :) ). Then I have opened Eclipse project that was created by somebody else. ...
3
votes
2answers
3k views

How use the maven-jboss-plugin?If I want to deploy the war how to do?

I want to trying maven-jboss-plugin but I don't know what is this,and I want to deploy the war use the jboss-maven-plugin or maven-jboss-plugin?How to use?
0
votes
0answers
741 views

Maven-glassfish-plugin can't use <adminPassword> tag?

settings.xml I define to: <profile> <id>GlassFishv3</id> <activation> <activeByDefault>false</activeByDefault> ...
1
vote
2answers
326 views

Maven Plugin - Restart Jetty with new WAR?

What I would like to do is automatically test against several different maven build profiles. I want to write a maven plugin that iterates through each profile so I don't have to manually list them ...
17
votes
5answers
36k views

Maven: Including a META-INF folder in the classes folder

I have a very simple WAR project and I want to include a directory named META-INF at the top of the classes output folder where all the compiled Java classes are. I'm using Maven, but it seems that ...
13
votes
2answers
7k views

What is the best way to unit test a EJB3 component without having to deploy the component

I would like to have a JUnit (or other) system where the enterprise beans can be tested in a mock environment so that all resources/beans and so on are injected locally. The enterprise beans should ...