Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to configure sonatype nexus to allow sbt plugins?

When publishing our plugin we got this

[info] Done packaging.
[trace] Stack trace suppressed: run last *:publish for the full output.
[error] (*:publish) java.io.IOException: PUT operation to URL https://nexus.mycompany.com/repository/maven-snapshots/com/foo/foo-sbt-plugin_2.10_0.13/1.0.0-SNAPSHOT/foo-sbt-plugin-1.0.0-SNAPSHOT.pom failed with status code 400: Invalid path for a Maven 2 repository

We set up the plugin using

sbtPlugin := true
publishMavenStyle := true
like image 849
Somatik Avatar asked Dec 23 '22 21:12

Somatik


1 Answers

This was fixed by setting the repository Layout Policy to permissive in the nexus admin.

http://nexus.mycompany.com/#admin/repository/repositories:maven-releases http://nexus.mycompany.com/#admin/repository/repositories:maven-snapshots

like image 79
Somatik Avatar answered Apr 09 '23 07:04

Somatik