Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why SBT creates "default" directory when i use publishLocal command?

Tags:

scala

sbt

I want to publish my local library into .ivy2 directory. Using sbt puslishLocal command everything works fine, but it creates a path named default, followed by other path that contains the name of project.

What is that default path? How to remove it?

I'm using sbt 1.2.8 on Windows 10.

like image 647
Marco Catalano Avatar asked Oct 28 '25 06:10

Marco Catalano


1 Answers

I solved the problem :)

That path was created because I don't set organization property in my build.sbt file.

like image 114
Marco Catalano Avatar answered Oct 31 '25 08:10

Marco Catalano