You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, we appreciate the help provided by this plugin.
We have a multi-module project for which we execute sbt release with-defaults. The publish process for each of the modules does get executed but they are not published with the correct groupId, instead both the group and artifact IDs are the same and matching the module name
Attaching a modified version of the actual build.sbt file
[info] published module1_2.13 to https://our.artifactory/artifactory/sbt-release-local/module1/module1_2.13/0.0.160/module1_2.13-0.0.160.jar
[info] published module1_2.13 to https://our.artifactory/artifactory/sbt-release-local/module1/module1_2.13/0.0.160/module1_2.13-0.0.160-sources.jar
[info] published module1_2.13 to https://our.artifactory/artifactory/sbt-release-local/module1/module1_2.13/0.0.160/module1_2.13-0.0.160-javadoc.jar
whereas we were expecting it to be based off the organization name
[info] published module1_2.13 to https://our.artifactory/artifactory/sbt-release-local/mycompany/module1_2.13/0.0.160/module1_2.13-0.0.160.jar
[info] published module1_2.13 to https://our.artifactory/artifactory/sbt-release-local/mycompany/module1_2.13/0.0.160/module1_2.13-0.0.160-sources.jar
[info] published module1_2.13 to https://our.artifactory/artifactory/sbt-release-local/mycompany/module1_2.13/0.0.160/module1_2.13-0.0.160-javadoc.jar
The text was updated successfully, but these errors were encountered:
First of all, we appreciate the help provided by this plugin.
We have a multi-module project for which we execute
sbt release with-defaults
. The publish process for each of the modules does get executed but they are not published with the correct groupId, instead both the group and artifact IDs are the same and matching the module nameAttaching a modified version of the actual build.sbt file
Snippet from the release process log:
whereas we were expecting it to be based off the organization name
The text was updated successfully, but these errors were encountered: