Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
70 views

I recently upgraded the Maven Dependency Plugin from 3.3.0 to 3.4.0, and now my build fails during the unpack phase with the following error: Failed to execute goal org.apache.maven.plugins:maven-...
stupidheadlol's user avatar
0 votes
1 answer
78 views

I want to download a zip file from a maven repository, extract the jar file from the zip, compile my springboot application with the jar file and include the jar into my application target jar file ...
cknelle's user avatar
  • 187
0 votes
0 answers
65 views

I want to quickly see a list of relevant module dependencies. Using dependency:tree, I want to filter out internal and optional dependencies and their respective transitive dependencies. For this, I ...
Kariem's user avatar
  • 4,981
0 votes
1 answer
763 views

I am trying to build my project using maven but keep on getting following error. [ERROR] Plugin org.apache.maven.plugins:maven-dependency-plugin:3.1.1 or one of its dependencies could not be resolved: ...
Prasu's user avatar
  • 1
0 votes
1 answer
291 views

In my Maven project (an aggregate project with child projects) I issue the following command for the Versions Maven Plugin: mvn versions:display-dependency-updates There are a couple of outdated ...
Garret Wilson's user avatar
0 votes
2 answers
276 views

I've configured my nexus repository with the Allow Redeploy deployment policy and now I need to refresh my local repository to reflect release redeployments (getting the artifacts uploaded by other ...
Santiago Ruiz's user avatar
0 votes
0 answers
26 views

I'm using mvn dependency:tree to print out dependency of my project. I have 2 pom.xml in my project, 1st pom.xml genearates a.jar, 2nd project uses a.jar I'm removing some unused dependencies from 1st ...
rhbc73's user avatar
  • 767
2 votes
3 answers
5k views

Some 3rd party libraries and dependencies are obsolete or outdated in my Maven project. How do I detect which ones are used and which are not? How do I update outdated ones? I want the unused ones to ...
Muhammed Hakan ÇELİK's user avatar
0 votes
0 answers
82 views

I created a maven parent project, where I have: Parent pom: <modules> <module>my-project-solution-a</module> <module>my-project-solution-b</module> <module&...
victorio's user avatar
  • 6,746
0 votes
1 answer
49 views

It is possible to generate a classpath file during a build, for instance using the maven-dependency-plugin to create a file named classpath: mvn dependency:build-classpath -Dmdep.outputFile=classpath ...
user2515975's user avatar
  • 1,272
0 votes
0 answers
136 views

I'm trying to unpack some dependencies with maven-dependency-plugin. I want each dependency in its own directory named with the artifact Id and the artifact version For example : target/unpacked/...
Clément Honoré's user avatar
0 votes
0 answers
179 views

I have one zip artifact of one repo present on the nexus repo. In compile phase, I need to download it in another repo using pom.xml and later move it to another folder using Docker. To unpack the zip,...
ajayv's user avatar
  • 713
1 vote
1 answer
3k views

I have a maven build that fails on executing mvn go-offline, because it tries to download log4j-core:2.11.2 - a version which has been removed from my company's Artifactory due to the Log4Shell ...
prodigaltim's user avatar
0 votes
1 answer
2k views

We have a common logback.xml file that we would like to use across different web apps. It includes a RollinFileAppender which should see files named as the project artifactId. The logback.xml ...
ceepan's user avatar
  • 95
1 vote
0 answers
421 views

In my maven project, when I use maven-dependency-plugin:resolve, it resolves all the dependencies used by the project in text file. I want to resolve specific dependencies of particular POM file. But ...
pikachu07's user avatar
0 votes
0 answers
828 views

I am using maven dependency plugin in my pom, and this is the how I configured it: <plugin> <groupId>org.apache.maven.plugins</groupId> <...
ethicalhacker's user avatar
2 votes
1 answer
1k views

I've been suffering this problem for a while now and can't figure out what the issue might be. It is intermittent which is why I give it half an hour here and there to try to solve it but then end up ...
Oskar Lund's user avatar
-1 votes
1 answer
184 views

I am trying to append folder before for all classpath entries in manifest file. As you can see in pom file below, I am using jar plugin to add classpath entries to manifest. With dependency plugin I ...
MarekChr's user avatar
  • 1,174
0 votes
1 answer
858 views

I have a springboot project that we got going quickly by using the various appropriate spring-boot-starter jars to bring in the appropriate transitive dependencies that we needed. Now, as we get ...
Jeff Bennett's user avatar
  • 1,056
2 votes
1 answer
1k views

We are using the maven-dependency-plugin to get a ZIP from our nexus for later use. We do this cause it's the easiest way to download from our protected nexus using the integrated maven-user handling. ...
TomStroemer's user avatar
  • 1,610
1 vote
0 answers
334 views

I want a list of runtime, compile and provided dependencies when using mvn dependency:list. I want to exclude dependencies with a test scope. "includeScope" has runtime and compile options, ...
scarvish's user avatar
6 votes
3 answers
9k views

One of the project that I was looking into has these relevant configurations: <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target&...
Naman's user avatar
  • 32.7k
-2 votes
2 answers
372 views

There are modules A, B and C. Module A is a dependency for modules B and C. All jar-s built in the module A are to be distributes into Maven Central but only after integration tests in modules B and C ...
Thed's user avatar
  • 23
2 votes
1 answer
816 views

Why would Sonatype IQ scan report show (in IntelliJ-IDEA) a Guava vulnerability when mvn dependency:tree does not show Guava at all? Here is my Sonatype scan result, with a Level-7 Critical ...
djangofan's user avatar
  • 29.9k
6 votes
1 answer
2k views

dependency:list prints entire tree in flat format. What can I do so it only gives first level only ? Just to illustrate with dependency:tree [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (...
Jigar Shah's user avatar
  • 2,674

1
2 3 4 5
9