Fix broken organization name in build.sbt

This commit is contained in:
Chord 2016-05-03 04:04:36 -04:00
parent df1d222df8
commit e41d0ac9c4

View file

@ -1,5 +1,5 @@
lazy val commonSettings = Seq( lazy val commonSettings = Seq(
organization := "net.net.psforever", organization := "net.psforever",
version := "1.0", version := "1.0",
scalaVersion := "2.11.7", scalaVersion := "2.11.7",
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8"), scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8"),
@ -32,4 +32,4 @@ lazy val common = (project in file("common")).
settings(commonSettings: _*). settings(commonSettings: _*).
settings( settings(
name := "common" name := "common"
) )