question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

spring-boot-maven-plugin does not act transitively when excluding dependency

See original GitHub issue

Using Spring-boot 1.3.5.RELEASE

I’m using org.springframework.boot.loader.PropertiesLauncher to pick up some dependencies provided by the platform so I don’t want them bundled in the jar. So i’m trying to exclude a single dependency and all of it’s transitive dependencies.

  1. Marking the dependency as <scope>provided</scope> does not exclude it or any of it’s transitive dependencies. (But I understand this is by design)
  2. Marking the dependency as <optional>true</optional> does not exclude it or any of it’s transitive dependencies.
  3. Using spring-boot-maven-plugin configuration to exclude the dependency works but it does NOT exclude any of it’s transitive dependencies.
                    <excludes>
                        <exclude>
                            <groupId>com.mycompany</groupId>
                            <artifactId>foo</artifactId>
                        </exclude>
                    </excludes>    

There doesn’t seem to be a spring-boot-maven-plugin option to act transitively when excluding??

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

2reactions
Karthik-Rangasamycommented, Jun 7, 2018

Wondering why it is not supported? What is the point of including the transitive dependencies when its parent is not included?

0reactions
Aaaaaaroncommented, Jan 7, 2019

confused too.

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to exclude transitive dependencies of spring-boot ...
According to the Spring Boot Maven Plugin 2.3.1.RELEASE documentation, to override individual dependencies, you need to add entries in the ...
Read more >
Spring Boot Maven Plugin – Exclude a dependency
A Spring Boot project should consider provided dependencies as container dependencies that are required to run the application.
Read more >
Maven Exclude Dependency | Transitive and Exclusion of ...
Guide to Maven Exclude Dependency. Here we also discuss the transitive & exclusion of dependencies and see how certain dependency can be excluded...
Read more >
Find and Fix Transitive Dependency Version Upgrade ...
After checking, I did not use any functionalities from logback-core so what I can do is to exclude that package from my spring-boot-starter-web....
Read more >
Maven Dependency Scopes - Baeldung
This is the default scope when no other scope is provided. Dependencies with this scope are available on the classpath of the project...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found