So my problem is how to add multiple maven repositories to one gradle file. This DOESN’T work: repositories { mavenCentral() maven { url "http://maven.springframework.org/release" url "http://maven.restlet.org" } } 2...
I have a large Maven project with many modules and many pom.xml files. The project has changed and I suspect the pom’s contain some unnecessary dependencies. Is there is...
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question...
I am trying to set up a project using Maven (m2eclipse), but I get this error in Eclipse: Description Resource Path Location Type Could not calculate build plan: Failure...
I have a fork of a small open sourced library that I’m working on github. I’d like to make it available to other developers via maven, but I don’t...
I am using Maven 2.2.1 and to build my project I used this command mvn clean install -Dmaven.test.skip=true However, the build failed saying it couldn’t find one of the...
I found the maven-shade-plugin being used in someone’s pom.xml. I’ve never used maven-shade-plugin before (and I’m a Maven n00b) so I tried to understand the reason for using this...
My project has the following structure: /src/main/java/ /src/main/resources/ /src/test/java/ /src/test/resources/ I have a file in /src/test/resources/test.csv and I want to load the file from a unit test in /src/test/java/MyTest.java...
Since I use Maven I have been able to build and install in my local repository projects that have incomplete Javadoc tags (for example, a missing parameter). However, since...
How do I use maven command line to determine which settings.xml file Maven is picking up? 8 Answers 8