-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix build gradle #81
Fix build gradle #81
Conversation
Installation and configuration of ShadowJar plugin for flatjar generation. Installation and configuration of the Dokka plugin for the generation of the documentation. (Before the javadoc file contained only the SDK sources.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good job 👍
some comment about the naming of the SDK
You changed the SDK name without from sdk-jvm-x.x.x-without-dependencies.jar
to sdk-jvm-.x.x.x.jar
And sdk-jvm-.x.x.x.jar
to sdk-jvm-x.x.x-with-dependencies.jar
Here you can see that sdk-jvm-.x.x.x.jar
was with dependencies and you changed it to be without dependencies, once released on maven people that were importing sdk-jvm-.x.x.x
in their pom.xml
or build.gradle
will have issues because they will have missing dependencies.
We should keep the same naming as before to avoid confusing the users when they will be upgrading their version of the SDK.
Also can you please update the compatibility matrix in the README.md
…ithout dependencies
FIxed in commit c1fb776 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no experience with Gradle so if it's ok for @Shiranuit it's ok for me
What does this PR do ?
How should this be manually tested?
...
Other changes
Boyscout