From 38d297482079d8405e155706e4205cb519fb7309 Mon Sep 17 00:00:00 2001 From: Sequencer Date: Fri, 10 Aug 2018 08:23:24 +0800 Subject: [PATCH] change organization for sbt (#1480) `organization` for sbt has the same meaning for `groupid` in maven. The naming rule is stated [here](https://maven.apache.org/guides/mini/guide-naming-conventions.html) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 9ae157dc..6b8392d6 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ import sys.process._ enablePlugins(PackPlugin) lazy val commonSettings = Seq( - organization := "berkeley", + organization := "edu.berkeley.cs", version := "1.2", scalaVersion := "2.12.4", crossScalaVersions := Seq("2.12.4", "2.11.12"),