spring-boot-maven-plugin does not act transitively when excluding dependency
See original GitHub issueUsing 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.
- 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) - Marking the dependency as
<optional>true</optional>
does not exclude it or any of it’s transitive dependencies. - 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:
- Created 7 years ago
- Comments:5 (2 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Wondering why it is not supported? What is the point of including the transitive dependencies when its parent is not included?
confused too.