Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Repository for publishing is not specified" despite publishing succeeding

Tags:

scala

sbt

nexus

I have a separate Settings.scala file in my large SBT project which has the following:

lazy val commonSettings = Seq(
  // ... lots of settings
  publishTo :=
    Some("Sonatype Nexus Repository Manager" at
      "http://my.company.nexus/content/repositories/releases/"),
  credentials += Credentials(Path.userHome / ".ivy2" / ".credentials"),
  publishMavenStyle := true,
  crossScalaVersions := Seq("2.10.6"),
  // ... lots of other settings
)

Now all my projects in build.sbt are defined the following:

lazy val aProject =
  project.in(file("somewhere/aProject")).
    settings(commonSettings).
    settings(
      // project specific settings
    )

When I now do

sbt "+ publish"

I see that all my artifacts get published, and when I look into my Nexus they are there, and I can also use them as dependencies etc, so publishing works, but nevertheless I get the following at the end:

java.lang.RuntimeException: Repository for publishing is not specified.
    at scala.sys.package$.error(package.scala:27)
    at sbt.Classpaths$$anonfun$getPublishTo$1.apply(Defaults.scala:1470)
    at sbt.Classpaths$$anonfun$getPublishTo$1.apply(Defaults.scala:1470)
    at scala.Option.getOrElse(Option.scala:120)
    at sbt.Classpaths$.getPublishTo(Defaults.scala:1470)
    at sbt.Classpaths$$anonfun$59.apply(Defaults.scala:1150)
    at sbt.Classpaths$$anonfun$59.apply(Defaults.scala:1150)
    at scala.Function1$$anonfun$compose$1.apply(Function1.scala:47)
    at sbt.$tilde$greater$$anonfun$$u2219$1.apply(TypeFunctions.scala:40)
    at sbt.std.Transform$$anon$4.work(System.scala:63)
    at sbt.Execute$$anonfun$submit$1$$anonfun$apply$1.apply(Execute.scala:226)
    at sbt.Execute$$anonfun$submit$1$$anonfun$apply$1.apply(Execute.scala:226)
    at sbt.ErrorHandling$.wideConvert(ErrorHandling.scala:17)
    at sbt.Execute.work(Execute.scala:235)
    at sbt.Execute$$anonfun$submit$1.apply(Execute.scala:226)
    at sbt.Execute$$anonfun$submit$1.apply(Execute.scala:226)
    at sbt.ConcurrentRestrictions$$anon$4$$anonfun$1.apply(ConcurrentRestrictions.scala:159)
    at sbt.CompletionService$$anon$2.call(CompletionService.scala:28)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    at java.lang.Thread.run(Thread.java:745)

What am I missing / doing wrong in my sbt file?

like image 231
rabejens Avatar asked Nov 30 '15 11:11

rabejens


2 Answers

If a project is not defined for the root directory in the build, sbt creates a default one that aggregates all other projects in the build.

I suspect you don't define a root project, so SBT defines its own and of course it doesn't get the common settings. With + publish SBT tries to publish it, starts with publishing all the projects it aggregates (which succeeds) and then fails to publish the aggregate project itself.

To fix this, either:

  1. just define the root project and give the desired settings explicitly (and they aren't necessarily the same: there is nothing actually to publish there, so you probably want publishArtifact := false);

  2. Make the settings global:

    publishTo in ThisBuild := ...
    

See also What is the difference between ThisBuild and Global scopes?

like image 133
Alexey Romanov Avatar answered Nov 19 '22 15:11

Alexey Romanov


Unfortunately there are builds where publishArtifact := false doesn't prevent publishing (such as using publishSigned from sbt-pgp plugin) and you can still get root/*:publishSignedConfiguration) Repository for publishing is not specified errors.

SBT issue 3136 suggests skip in publish := true is a better setting for disabling all publishing activity in a project as of Oct 2017 (SBT 1.0.3).

like image 45
Ben Hutchison Avatar answered Nov 19 '22 13:11

Ben Hutchison