Closed Anatolii closed 5 years ago
Hey @Anatolii, Something went wrong with the build.
TravisCI finished with status errored
, which means the build failed because of something unrelated to the tests, such as a problem with a dependency or the build process itself.
Hey @Anatolii,
Your changes look good to me!
Hey @Anatolii,
Your changes look good to me!
Hey @Anatolii,
Your changes look good to me!
Currently plugin publishes only main artifact:
com.tomtom.gradle:updatechangelog-plugin:<version>
But in order to be able to utilize plugins DSL one more artifact should be published:com.tomtom.gradle.updatechangelog:com.tomtom.gradle.updatechangelog.gradle.plugin:<version>
. This artifact will have dependency on the main plugin artifact and will not contain anything but.pom
file. When Gradle tries to resolve Plugin artifact from provided ID, it constructs it in next way:<pluginID>:<pluginID>.gradle.plugin:<version>
by default.The
java-gradle-plugin
is used to define information about theupdatechangelog
plugin publication. It also creates two Maven publications, which satisfy requirements above. One of them is copy ofmavenJava
, which is deleted with changes in this PR. Maven publications use project's group name by default, so the name was specified to the project scope.