-
Notifications
You must be signed in to change notification settings - Fork 412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Starters do not depend on spring-boot-starter
#230
Comments
Does it make sense to move this to spring cloud commons so there doesn't have to be an issue in every repo? |
Sorry, I'd assumed it was an isolated problem based on spring-io/start.spring.io#191. I thought we would have heard about it before if it applies to the Cloud starters that, I imagine, are more commonly used. I guess it's unusual to use one in isolation though? If the problem's more widespread then, yeah, it probably makes sense to handle it centrally than have loads of issues. Whatever works best for you. |
I'll investigate. The starters here depends on commons directly rather that spring cloud starter, that may be enough |
FWIW, |
Yeah, not in front of computer to check efficiently, so it is likely localized. |
|
It was a workaround until the definition of the starter got fixed. I thought I had created an issue back then but it looks like I forgot. |
Mark fixed the vault one a while ago so we needed to catch up. See spring-io/start.spring.io#193. |
I was about to write that, see spring-io/initializr#414 (comment) |
I'm in the process of writing some tests for start.spring.io to check that a dependency that is named like a starter actually is one. I've identified the following modules that should depend on
There may be others as the start.spring.io tests only cover the starters that are offered by the service.
|
As noted in the documentation starters are required to directly or indirectly depend upon
spring-boot-starter
. The starters in this repository do not meet this requirement so when they are used in isolation, things like@SpringBootApplication
are not on the classpath.The text was updated successfully, but these errors were encountered: