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...
  • May 15, 2022
  • 0 Comments
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...
  • May 14, 2022
  • 0 Comments
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...
  • May 14, 2022
  • 0 Comments
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...
  • May 14, 2022
  • 0 Comments
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...
  • May 13, 2022
  • 0 Comments