-
Notifications
You must be signed in to change notification settings - Fork 79
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
Maven spring (boot) versions are invalid '<version>.</version>' #1086
Comments
Thank you for the report @piewie! I merged #1088 to address it and the spring boot dependencies do not have a version anymore (in 1.8.0 they used Pom files for Can you verify the 1.9.0-SNAPSHOT version to confirm it is working for you again? |
The change is staged for release and will be part of the next release. If you want to try and verify it in your application today, Thank you for the report/contribution! |
@timonback according to my colleague it's fixed indeed, thx for the quick work. |
Yes, we plan for Friday next week. |
The change is available in the latest release. 🎉 Thank you for the report/contribution and making Springwolf better! |
Describe the bug
Since 1.8.0 maven pom does not longer has a version for spring (and spring boot) dependencies, see https://repo1.maven.org/maven2/io/github/springwolf/springwolf-core/1.8.0/springwolf-core-1.8.0.pom
Since there is no version specified in either the dependency management nor parent, this results in an error (classes missing or semver compatibility issues). (solution now is exclude them all and specify add the dependencies ourselves)
Dependencies and versions used
1.8.0
Code example
If possible, an example project or snippet that reproduces the bug.
Stack trace and error logs
If an exception has been thrown or an error was logged by springwolf.
example semver
Some nested dependencies use another major version for org.springframework:spring-messaging:6.1.13
paths to dependency are:
+-xx
+-yy
+-io.github.springwolf:springwolf-core:1.8.0 (managed) <-- io.github.springwolf:springwolf-core:1.8.0
+-org.springframework:spring-messaging:6.1.13 [runtime] (managed) <-- org.springframework:spring-messaging:. [runtime]
The text was updated successfully, but these errors were encountered: