-
Notifications
You must be signed in to change notification settings - Fork 20
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
Add Jreleaser configuration and clean up build script #115
Conversation
Does |
I was asking about the build of
Note, however, that this is not due to a configuration caching problem; it's because there's a dependency closure that for some reason isn't getting resolved:
Maybe you could fix this by not applying the spotbugs plugin to the root project? |
I think the easiest way to fix CC is to define repositories in the root project: id("com.adarshr.test-logger") version "3.2.0"
id("com.gradle.plugin-publish") version "1.2.1" apply false
id("org.jreleaser") version "1.9.0"
}
+repositories {
+ mavenLocal()
+ mavenCentral()
+}
+ The plan is to enable CC by default some time this year, so you might as well get it working now. |
652c0e1
to
67770a0
Compare
Description of changes:
Implements a number of changes to improve the release process for the plugins.
com.gradle.plugin-publish
plugin already generates theses so they were redundant)maven-publish
setup as thecom.gradle.plugin-publish
plugin already creates publications.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.