Tagged Questions
0
votes
0answers
3 views
How to run Jacoco with Java 7 and spring-instrument?
Since I had some problems using cobertura with Java 7 - I'm trying Jacoco.
My project has a parent pom.xml and sub projects.
In one project I use spring to run some integration tests - so I have this ...
1
vote
0answers
6 views
Upload properties files to remote server before cargo:deploy goal in maven
I have a maven war project configured to deploy to a remote tomcat server using the cargo plugin.
I want to upload some properties files to the server before deploying the application war.
I make ...
0
votes
1answer
18 views
Why cannot I change the root context to “/” in my JBoss AS?
I have a maven project for my java enterprise application that is deployed on a JBoss 7.1 server.
In my EAR module I have this pom.xml
<plugins>
<plugin>
...
0
votes
2answers
21 views
Exception (NoClassDefFoundError) in AsyncHttpClient
when i run benchmark program in com.ning.http.client.AsyncHttpClient i can see this type of error..
**Setting up AhcGrizzlyBenchmark...
Exception in thread "main" java.lang.NoClassDefFoundError: ...
0
votes
0answers
11 views
New generated Maven PlayN project displays errors on android screen
after hours and hours of search to get it running I'm stuck now. So what happened? I tried to dive into the PlayN framework to code my first game on android. With a little struggle I generated my ...
1
vote
2answers
23 views
package annotations should be in file package-info.java
I am getting the above compilation error when trying to build a multi-modules Maven project in a Cygwin environment. The specific module that is breaking the build is a web service API that depends on ...
0
votes
0answers
16 views
TeamCity build triggered by Spring config changes?
Our process currently detects any commit to the repo and triggers a TC build using Maven, and that includes Spring configuration files. To me it sounds silly to have to recompile all the Java source ...
2
votes
1answer
43 views
How to create reusable build configuration in maven?
I have java project building using maven with several sub-modules that are build the very same way: there is executable jar, dependency jars in lib directory, some resources etc.
Configuration among ...
0
votes
0answers
23 views
Test coverage tool for cucumber+selenium+maven test cases
I have been written some UI automation test cases using cucumber and selenium in a maven project. I have searched for test coverage tools online, but I haven't gotten any reliable one that works. Can ...
1
vote
3answers
40 views
Visual representation of java/maven references
I have a java (maven) project that is quite large. Because of lack of documentation, I'm searching for a visual representation of the various dependencies within the large code base. Is there ...
0
votes
2answers
28 views
ClassNotFoundException ofbiz
I am trying to initialize OfbizWorkflow,but when i try to do that it gives me an error
java.lang.ClassNotFoundException: org.ofbiz.core.entity.GenericTransactionException
as i searched but not ...
0
votes
0answers
14 views
Appengine Debug Port in use even after stopping devserver
My App engine project POM file has the following configuration
<jvmFlags>
<jvmFlag>-Xdebug</jvmFlag>
...
0
votes
1answer
34 views
Selenium 2 in Java JUnit Test Error: Could not start a new session
I'm designing a website login test program in Java by using Selenium2.
When I run it in JUnit in NetBeans, error shows up: "testLogin(JUnitTest.LoginTest): Could not start a new session. Possible ...
0
votes
1answer
39 views
Intellij scope and maven scope
I have a project with 2 sub modules. Tests within the modules use System.getProperty("user.dir") to load some json fixtures. When I run the tests from maven, System.getProperty("user.dir") returns ...
1
vote
0answers
22 views
Maven build failing due to EMMA error java.lang.ExceptionInInitializerError
I am running Maven build along with EMMA plugin. The goal executed is "mvn -X clean site". Tests are executed fine but during instrumentation we get below exception :
Failed to execute goal ...
5
votes
4answers
63 views
Maven Multi-Module Project Structure
I'm building a distributed application that is based off of a front-end (read: web-facing) HTTP API which calls into underlying (read: non-web-facing) Thrift Services.
As an example, I may have:
...
1
vote
0answers
40 views
Cobertura doesn't work with Java 7
I am using maven 3.0.4, JRE 1.7.0_09.
When I use mvn clean install all my tests passes and everything looks good - here is my surefire plugin configuration:
<plugin>
...
2
votes
1answer
30 views
maven “catch” execution - execute cleanup on failed build
I have a maven build the launches a process (a database) using the exec plugin, then interacts with that process using several other plugin executions (the maven sql mojo) and then finally shuts down ...
0
votes
1answer
22 views
Using an external file in a maven pom file to set System properties
I'm looking for the best possible approach so that I can import a .properties file in a maven pom file that will set properties found within the properties file as System properties.
For example I ...
1
vote
1answer
39 views
Link CSS and Images to Spring MVC maven Projcet
I have a Spring project created using maven. The following is my directory structure.
I want to add css images to this project. For this, i created a resources folder inside the web-inf directory ...
0
votes
1answer
30 views
How debug web application with maven Eclipse and glassfish?
I create simple web application as maven project. Run mvn eclipse:eclipse and import it into Eclipse worck space. I also has a Glassfish. I run maven goal "clean install" and add properties:
...
0
votes
0answers
13 views
Using paypal with android and maven
I am using the PayPal Amdroid SDK but my project is built with maven. The PayPal SDK consists of a jar and a static library of .so files which must be in the same directory as the jar. Intellij can ...
0
votes
0answers
26 views
Auto-generating datastore indexes in unit tests
Configuration: Maven 3, Objectify, Google-Appengine, Java 7
I'd like to find a way to auto-generate indexes (in the datastore-indexes-auto.xml file) using just unit tests. However, although the ...
1
vote
0answers
18 views
Best practice: Maven project with JAX-WS client against mostly offline WSDL
I have a Maven project which needs to access a web service under my control, but which is mostly unavailable during development.
I would like Maven to be fully aware of this, including generate ...
0
votes
0answers
15 views
apache axis wsdl2java won't download XSD (maven plugin)
I'm using Apache Axis 1.4, with Maven to generate Java from a WSDL on a server. The wsdl references a XSD schema and my problem is that this schema is now downloaded from the server - resulting in ...
0
votes
0answers
29 views
Axis2 web-service in a multi module maven project
I've got an axis2 web-service generated from the WSDL file in a multi module maven project.
wsdl2java has generated the stubs and basic skeleton for me.
What's the best way to integrate those ...
1
vote
1answer
31 views
How to deploy a node.js app with maven?
Most of our team consists of java developers and therefore the whole build / deployment / dependency management system is built on top of maven. We use CI so every build process runs unit test (w. ...
1
vote
2answers
22 views
How do I exclude specific tests by default but include them if activate a a certain profile?
Right now I am aware that if I use
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
...
0
votes
2answers
21 views
Maven Log viewer / Analyzer?
I googled for it. I do not see anything. I just want to view the maven log in a better way. Preferably a standalone tool not as an eclipse plug-in.
Anyone any idea?
1
vote
1answer
18 views
Using The LessCssProcessor only on a certain group of files
I'm trying to implement a LessCssProcessor in my maven project. However, the project I'm trying to use the processor on has files with CSS errors, causing the css files not to generate. Is it possible ...
0
votes
1answer
20 views
Guice: Different bindings in test and subproject
I have a maven project javaruntime and a maven project androidruntime which depends on the javaruntime project.
Each of the projects has a Guice-Module binding some classes to Interfaces.
In the ...
1
vote
2answers
26 views
.wav file in target folder modified after mvn clean install, won't play properly
I am working on a maven project and need to play a .wav file to accompany a desktop alert. I have tested the .wav file on its own to make sure that it works and it does. I have imported it into my ...
0
votes
1answer
58 views
How do I determine which version of a class my object is?
I'm trying to write a plugin into a framework application (Joget). My plugin source looks something like this:
public class MyPlugin extends ExtDefaultPlugin implements ApplicationPlugin, ...
1
vote
1answer
32 views
building a scala-java-antlr project in maven results with ClassDefNotFoundError on runtime
I'm trying to port mustache.scala to scala 2.10, and make it built with maven with antlr3-maven-plugin instead of sbt. so far, i got this, and the code is compiled successfully. but at runtime, when i ...
0
votes
1answer
20 views
Spymemcached conflict with hibernate-memcached and webapp-runner
I've got a Heroku Java app that makes use of the Spymemcached library, which in my case is included by my use of the hibernate-memcached library (1.3).
I now need to make sure that all requests to my ...
1
vote
1answer
43 views
java virtual machine Crashing
I have written a Java Spring-WS-Application server and am trying to deploy it from the command line using maven. However, when attempting to execute a "mvn clean package" it tells me that it couldn't ...
0
votes
1answer
62 views
How to unmarshal Map using XStream
I cannot seem to be able to unmarshall a Map properly using XStream.
I have the following code:
Storage class
public class Storage
{
@XStreamAsAttribute
private String basedir;
...
0
votes
3answers
41 views
Re-start dependent OSGI bundles on dependency bundle re-start?
I have OSGI bundles implementing API specified in another bundle (addded as dependency).
Is there any way to specify that whenever API bundle is restarted, restart the implenting bundles (dependents)?
...
0
votes
0answers
24 views
why maven surefire can't parallel run the cases for the configure in testng?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.15</version>
...
0
votes
0answers
23 views
Experience On Maven pom.xml To ANT build.xml Script With Maven Plugin Support [duplicate]
We are planning to implement a Maven based Java Web Application project.
Due to nature of customer requirements ""we may have to provide the ANT based build scripts"" in future course of time.
It ...
0
votes
1answer
33 views
Is it possible to run mvn sonar:sonar for maven project in other application?
I am able to add my maven java web project(say example:ApplicationBuild) to sonar running on my local machine. Now I want to write a small new java application which should add "Application Build" to ...
-3
votes
2answers
37 views
how to recompile a war file after modifying any java file in the war [closed]
I have modified a java file in the Maven project. And I am trying to recompile it using maven or is their other way to recompile and repackage it in war file.
0
votes
1answer
21 views
How to include logger configuration as separate file in maven assembly
I've got a Maven (Java) project in which I am using the Logback logger, using a file logback.xml to configure the logger. Currently, logback.xml resides in src/main/resources. This makes sure that ...
3
votes
1answer
62 views
In Maven, do modules get effected by the repository's updatePolicy?
This is just like this other question I asked, but instead of dependencies, this is about modules. Let me give a scenario. You've got a multi-module project and a continuous integration server that ...
0
votes
1answer
28 views
maven-jaxb1-plugin error while executing in jdk1.6 and maven 3.0.3
I am running a maven script which uses maven-jaxb1-plugin version 1.0.rc-11 to generate the jaxb classes from xsd. The script was running successfully in the java version 1.4 and maven version less ...
1
vote
2answers
119 views
Java EE 7 First Cup Tutorial - Maven issues
I'm following along with the Java EE 7 updated version of FirstCup. I have glassfish 4 installed and am using NetBeans 7.3. I'm working on the very first example and I'm getting maven issues.
I ...
0
votes
0answers
35 views
How to make the Sonar maven plugin example work
I am trying to get the sonar-checkstyle-extension-plugin to run on my local Sonar server.
Firts I built the plugin via maven. Then I copied the plugin-jar manually to the extensions\plugins-folder of ...
0
votes
0answers
20 views
Maven: How to make SNAPSHOT artifacts identical even if built at different times?
We use SNAPSHOTs a lot and rebuild frequently, and have found that even if the source was unchanged the resulting artifact was not binary identical to the artifact built last time.
I would like them ...
0
votes
0answers
23 views
Maven Dependency Plugin: Dependency Source, linking Dependencies with the repositories and displaying it
I need help with extending Maven Dependency plugin as it doesn't display all information I want about Dependency. I want to get source of the Dependency, linking artifacts with the repositories and ...
0
votes
1answer
29 views
Is there a way to reference another local project directory in Maven without using a repository?
Say I have the following layout on my computer
root-directory/
projectA/
moduleA1
moduleA2
moduleA3
pom.xml <----------\
projectB/ |
...



