Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

francisdb/sbt-plugin-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sbt-plugin-test

repro for sbt/sbt#4852

Provisioned Nexus repo

Nexus repo and artifacts are listed below

http://167.71.68.47:8081/repository/maven-snapshots

"com.example" %% "libproject" % "0.1.0-SNAPSHOT"
"com.example" % "sbt-plugin-test" % "0.1.0-SNAPSHOT"

com/example/sbt-plugin-test_2.12_1.0/0.1.0-SNAPSHOT/sbt-plugin-test-0.1.0-SNAPSHOT.jar
com/example/libproject_2.13/0.1.0-SNAPSHOT/libproject_2.13-0.1.0-SNAPSHOT.jar

add this to ~/.sbt/global.sbt

credentials ++= Seq(
  Credentials("Sonatype Nexus Repository Manager", "167.71.68.47", "test", "test")
)

(you also have the rights to publish to that nexus)

Reproducer

reproduce by running the testproject with 1.2.8 and 1.3.0-RC4

cd testproject
# make sure any 1.2.x cache files are removed
rm -rf ~/.ivy2/cache/scala_2.12/sbt_1.0/com.example/sbt-plugin-test
rm -rf ~/.coursier/cache/v1/http/167.71.68.47%3A8081/
sbt hello

even normal dependencies fail

cd testproject
#comment out the addSbtPlugin in ./project/plugins.sbt
#comment out the .enablePlugins(HelloPlugin) in ./build.sbt
rm -rf ~/.ivy2/cache/scala_2.12/sbt_1.0/com.example/libproject
rm -rf ~/.coursier/cache/v1/http/167.71.68.47%3A8081/
sbt clean run

Releases

No releases published

Packages

No packages published

Languages