The idea is to remove the publication by default and instead flip the inclusion of the stubsJar to be on the end user. This helps to resolve #482, but it will be a breaking change that will have to wait until v3.0.0.
A similar story can be found here.
Possible solution (Gradle):
publishing {
publications {
maven(MavenPublication) {
// Other settings
artifact stubsJar
}
}
}
The idea is to remove the publication by default and instead flip the inclusion of the stubsJar to be on the end user. This helps to resolve #482, but it will be a breaking change that will have to wait until v3.0.0.
A similar story can be found here.
Possible solution (Gradle):