Tagged Questions
0
votes
0answers
18 views
Maven archetype: how to copy file from disk to newly created project?
I try to write a maven archetype. One of the its input properties, "fileLocation" contains an absolute path to file on the disk. How can I make archetype copy this file to newly created project?
I ...
0
votes
1answer
29 views
Maven install error javax.el.ELContext not found and javax.el.ELResolver not found
I am using Maven 3 and JDK 1.7. When I tried to do mvn install, I am getting the following errors
[ERROR] /domain/view/EmployeeNameConverter.java:[29,76] cannot access
javax.el.ELContext
class file ...
0
votes
0answers
28 views
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:
I am using Maven 3 and JDK 1.7. When I tried to do mvn install, I am getting the following errors
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:
compile ...
1
vote
0answers
30 views
How to create an eclipse-compatible, mavenised Android project?
I need to create a Maven project for my Android application. When I use the normal Android Maven plugin, it produces a file structure with incorrect location of test classes (the test classes lie ...
1
vote
1answer
49 views
Packaging war file with maven
I thought that, if my project is named my-web-application, than when I call mvn clean install maven first compiles to target\my-web-application-1.0 folder and than "zips" that folder to ...
1
vote
0answers
22 views
What is the proper naming convention for Maven 3 dependency version properties?
My company uses properties to specify the version number for the dependencies in our Maven 3 POMs:
<properties>
<???>1.2.3-SNAPSHOT</???>
</properties>
...
...
0
votes
2answers
25 views
maven pass command argument at build time to overwrite property
In our application, we have a system to whitelabel.
in application.properties there is a setting theme=default
this setting is injected into a Spring managed bean, which then does manipulation of ...
0
votes
1answer
27 views
Can I configure multiple plugin executions in pluginManagement, and choose from them in my child POM?
I have 2 common plugin-driven tasks that I want to execute in my projects. Because they're common, I want to move their configuration to the pluginMangement section of a shared parent POM. However, ...
0
votes
2answers
23 views
Maven, cyclic imports, classpath for compile
I have task to migrate legacy project from ant to maven and have trouble with cyclic imports. My problem is ant builds many jars that contains same classes.
Originally ant project have one src folder ...
0
votes
0answers
16 views
Create project folder under Maven Release Branch
SUMMARY:
What is the best way to create an SVN branch from a Tag created by mvn release:* when the branch needs to live at Repo/branches/BRANCH_NAME/PROJECT_NAME/pom.xml and we want our pom.xml in ...
0
votes
1answer
42 views
Maven : Unable to get Property Value from Proprties file
I'm a newbee in apache Maven. When i try to read the values from the properties file, it's not picking the value. I already seen all the previously asked questions in SO. But no luck with that. This ...
0
votes
0answers
25 views
Get all the dependencies of a MavenProject (including transitive ones) using Aether
How can you get all the dependencies of a MavenProject (including transitive ones) using Aether?
I have seen numerous examples where you specify the gav and it resolves the artifact and all it's ...
2
votes
0answers
30 views
Eclipse Maven Error Plugin execution not covered by lifecycle configuration:
I am using Eclipse Juno with Maven 3.0.5 on Windows 7. The project was previously on Windows XP and I have moved to Windows 64 bit machine.
I have copied my Eclipse Spring 3, Hibernate 4 and JSF 2.0 ...
2
votes
1answer
45 views
How to exclude test dependencies from a shaded maven jar?
I'm using the maven-shade-plugin and I'd like to exclude not only my test code, but my test dependencies in the shaded jar. I realize I can specifically exclude certain artifacts (like junit), but ...
0
votes
2answers
38 views
Maven Release: Prepare/Perform after Rollback incorrectly succeeds with wrong content
We use Maven with Subversion internally. We also use Maven's Release plugin. We noticed the issue described below when running through the following (correct, I presume) steps.
1. We run ...
0
votes
1answer
25 views
Maven: Using different plugin configurations on e.g. deploy
For an android maven project (consisting out of a parent project that consists out of the main apk project and a test project), I would like to be able to use different plugin configurations for ...
0
votes
1answer
36 views
Execute plugin only if another execution succeeds
I have two executions of a plugin to run in two different phases.
For instance:
<executions>
<execution>
<id>A</id>
...
6
votes
3answers
78 views
Why maven is downloading metadata every time?
Below is the error I usually get when my internet connection is flanky when trying to build a web application with maven.
My question is that, why does maven always have to download every time when ...
0
votes
1answer
52 views
Grails: how to use maven repo instead of ivy-cache
Need to use Maven Repository instead of ivy-cache, Please let me know what are the steps i have to do.
I tried multiple ways but it not working.
I specified in BuildConfig.groovy
pom true
...
0
votes
0answers
28 views
could not transfer artifacts org.codehaus.plexus:plexus-utils:jar in maven
I and trying to run sample of atmosphere in my eclipse but i have some error which is related to maven in my pom.xml
Project build error: Unresolveable build extension: Plugin
...
0
votes
3answers
32 views
Maven project depending on a JAR compiled in a different encoding
If my project is compiled with UTF-8 encoding like this:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
...
0
votes
1answer
26 views
Maven error with richfaces-showcase of RichFaces 4.3.1 Final
I tried to run richfaces-showcase of RichFaces 4.3.1 Final. When I execute the command "mvn clean package" as readme.txt instructed I get a Maven error. The error text is as follows:
[INFO] ...
2
votes
1answer
66 views
how to run maven project in android ? or convert maven project to android project?
i try to upload video to youtube by use this open source
https://code.google.com/p/ytd-android/
the problem couse by maven tool ... i never use it , and dont know how to use it.
there is way to ...
1
vote
1answer
36 views
Executing Maven 3 goals in order
I have several Maven projects - a web service, which depends on several libraries.
When I add a new feature and want to deploy the web service to the server, I usually need to build these libraries ...
1
vote
1answer
48 views
NoClassDefFoundError on a dependency class in a web application
I have a web application A, which depends on library B, which, in turn, uses library C. A, B and C are all Maven projects (A is a war, B and C are jars).
When I deploy A to the application container, ...
1
vote
1answer
19 views
Load a properties inside a jar
Can I load a properties file inside a jar in a maven plugin execution?
I have a jar with a system-properties (among other things). I can download and expand it, but I wonder if I there is a way to ...
0
votes
1answer
34 views
How to configure the Maven dependency for Guice 3.0 for use without AOP?
I have an Android Maven project and want to use Google Guice 3.0 in it.
There is a "No-AOP" version of Guice, which is compatible with Android.
How can I tell Maven to use the "No-AOP" version of ...
0
votes
1answer
41 views
Setting up Maven to allow deployment to different repositories easily
I'm currently working in an environment where I define the rules for a lot of people. We currently use Hudson and Artifactory, and I want to evaluate if the switch to Jenkins and Nexus are worth the ...
0
votes
1answer
24 views
Can maven sortpom plugin affect a project's build result?
Can the Maven Sortpom Plugin affect the result of a project's build ?
Is it possible to have a project build fail just because the sortpom plugin was added ?
0
votes
0answers
25 views
How to fix InstallException/ShellCommandUnresponsiveException?
When I try to deploy my application to Android emulator using mvn android:deploy I often get following error message:
[ERROR] Failed to execute goal ...
0
votes
1answer
23 views
Package a multiple-entry jar using maven for hadoop project
I'm new to maven. I want to package a jar of my hadoop project with its dependencies, and then use it like:
hadoop jar project.jar com.abc.def.SomeClass1 -params ...
hadoop jar project.jar ...
2
votes
1answer
39 views
Maven: How to copy sub folders and their content in a different structure
In a Maven project, I have directory, which I need the content from..
${basedir}/target/webapp-SNAPSHOT/WEB-INF/vendorspace/
|- dealo
|-static
|- css
|- ...
0
votes
2answers
41 views
Configure Maven to use javac -O
There is a option javac -O to compile the optimized java code according to the Javac manual. Can I use maven to use this flag?
1
vote
1answer
50 views
Maven Profiles and Tomcat in Eclipse
If I have 2 maven profiles for a WAR application like this:
mvn clean install -Pdevelopment
mvn clean install -Pproduction
and I import it in Eclipse to run in Tomcat, how to I tell Tomcat to use ...
0
votes
1answer
32 views
maven scm - Does maven creates tag automatically?
I have below configurations in place -
<scm>
<connection>scm:svn:http://example.com/tags/MyProject/MyProject-0.1</connection>
...
0
votes
0answers
53 views
maven-release-plugin : exclude target directory for modifications
I'm looking for a way to exclude the 'target' directory modifications during the maven release process. I tried below but it didn't work.
<configuration>
<checkModificationExcludes>
...
0
votes
1answer
30 views
Maven build fails at site default-deploy
I have been struggling to fix my maven build issue from last 2 days with no success almost. can you please help me on this -
I have a parent pom.xml which looks like
<distributionmanagement>
...
0
votes
1answer
42 views
how to pass maven module classes to a maven plugin
I've developed a maven plugin, which can scan classes within a module, to find some specific classes and do something about them.
The problem is that, when I'm using this plugin in a maven module, ...
0
votes
1answer
77 views
How can I create a Maven build profile to conditionally copy files?
I new to maven and I am trying to create pom.xml to build the war files for different environment using profiles
So I created the build target
<build>
...
0
votes
1answer
54 views
Adding SVN arguments in maven-release-plugin
During a mvn release:prepare, maven-release-plugin needs to make some commits (tag and new poms).
I need to be able to add arguments to this SVN command without changing anything but the pom.xml ...
0
votes
1answer
23 views
Making sure maven is running from scratch with a clean repo
I am pretty new to Maven and really not trying to fully learn it right now, just trying to install my java project.
I get some errors (it is from a Hadoop Crunch project) but the errors feel like ...
0
votes
0answers
57 views
Add sources and javadoc dependencies transitively for a dependency?
Hope someone can help me. I have to create a file which contains an ear archive, a Doc folder and a Code folder. Inside Doc folder I have to include one folder for each of our own modules the project ...
0
votes
1answer
28 views
Can you import a profile into a maven pom.xml?
A RESTful web service project that I'm working on needs to be deployed to a very unique environment (that requires a lot of custom configuration) in addition to the typical deployment environment and ...
1
vote
3answers
48 views
Is there a way to cascade the version of a parent pom?
I have a root pom.xml that acts as a parent for several child pom.xml files, which is great if you have one or two child pom.xml files. I am working on a project that has 50+ child pom.xml files, and ...
1
vote
1answer
77 views
JBOSS-AS-MAVEN-PLUGIN :- Authentication Fails BUT Jboss-cli authentications?
I have setup a new JBoss server and am able to access it remotely using 'jboss-cli.bat'.
HOWEVER, when my Hudson job runs, and trys to deploy a war to the server using jboss-as-maven-plugin, it is ...
1
vote
1answer
27 views
Read maven server attributes as properties
I have a server defined in .m2/settings.xml like this:
<server>
<id>foo</id>
<username>bar</username>
<password>baz</password>
</server>
...
1
vote
1answer
46 views
Should performance/integration tests be considered modules in a multi-module Maven project?
In a Maven multi-module project, should I consider the integration/performance tests projects also as modules?
multi-module-project
├── module-war
├── some-other-module
└── etc...
Should I ...
1
vote
0answers
30 views
Is maven-testing-harness no longer developed? Has it been replaced with maven-invoker-plugin?
Is the maven-testing-harness no longer developed? It seems most plugin developers have migrated their projects to use the maven-invoker-plugin. I can see the pros of using the latter, but as I am ...
0
votes
0answers
51 views
Change maven properties using Ant task
I have set a maven property in the pom.xml.
<properties>
<build.start.date>someValue</build.start.date>
</properties>
Now I have an ant task doing the following:
...
1
vote
2answers
26 views
pom.xml in every directory or skip intermediate?
Say my project structure is as follows:
project
|-- servlet
`-- filters
|-- filter1
`-- filter2
Should I have a filters/pom.xml which aggregates filter1 and filter2? Or should I directly ...
