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)
This commit is contained in:
Sequencer 2018-08-10 08:23:24 +08:00 committed by Henry Cook
parent e936b8bd43
commit 38d2974820
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ import sys.process._
enablePlugins(PackPlugin) enablePlugins(PackPlugin)
lazy val commonSettings = Seq( lazy val commonSettings = Seq(
organization := "berkeley", organization := "edu.berkeley.cs",
version := "1.2", version := "1.2",
scalaVersion := "2.12.4", scalaVersion := "2.12.4",
crossScalaVersions := Seq("2.12.4", "2.11.12"), crossScalaVersions := Seq("2.12.4", "2.11.12"),