This is somehow a follow-up of this question.
When I'm creating a Scala package with sbt, I am able to run it using one of these ways:
simply by typing
run
in the sbt consoleor by creating a jar file (using either
one-jar
orassembly
), and the running this jar in the system console by typingjava -jar myjar.jar
But I don't know how to
run my package from the scala program ? (not the sbt scala console, in which everything works fine by typing
import mypackage._
)use my Scala package in another project ? for example by importing
myjar
in another project ?
EDIT : you can forget my questions below about sbt-start-script
because now I'm using sbt-native-packager
(I have tried it just now and it works, but my previous questions remain open).
I have tried to use sbt-start-script but unsucessfully. The target/start
script is well created but I get such errors:
$ sh target/start
target/start: 2: target/start: Bad substitution
Exception in thread "main" java.lang.NoClassDefFoundError: Hi
Caused by: java.lang.ClassNotFoundException: Hi
...
Here I simply have a main.scala
file in the src/main/scala
folder and it is:
object Hi { def main(args: Array[String]) = println("Hi!") }
I'm using these settings in build.sbt
:
import com.typesafe.sbt.SbtStartScript
seq(SbtStartScript.startScriptForClassesSettings: _*)
There are several ways how you can use your project in another project. I will not discus the publishing to remote repository, as that's probably something you don't want to do anyway (at least at this point in time).
Lets assume you have a project called projectA - the
build.sbt
is just this:And you have another project called projectB, where you want to use classes defined in projectA.
Unmanaged Dependency
One of the simplest ways is to use it as a unmanaged dependency. You can do that by putting the
jar
file produced bypackage
,assembly
or any other command producing an artefact.Local Repository
Another way to use your dependency is to publish it to your local repository. Given the projectA as defined above, to the
build.sbt
of a projectB, add a dependencyNow you can publish projectA to your local repository by executing
publishLocal
in the projectA. The advantage of this approach is that if your projectA declares any dependencies, they will be added as transitive dependencies to projectB.Project Dependency
Last way that comes to my mind is to declare dependency directly on the projectA. You can do that by creating a
build.sbt
file in the projectB, which looks more or less like thisNow classes declared in projectA should be visible in projectB.