How to identify my artifact group?

I have an sbt project that I need publish-local and then use it from another project as "libraryDependencies". It all builds fine, but the groupId of the artifact matches its name. Can I specify groupId somehow in my build.sbt file?

+7
sbt
source share
1 answer

There is an organization for this purpose. Example from AkkaBuild.scala

 lazy val buildSettings = Seq( organization := "com.typesafe.akka", version := "2.4-SNAPSHOT", scalaVersion := Dependencies.Versions.scalaVersion, crossScalaVersions := Dependencies.Versions.crossScala ) 
+7
source share

All Articles