Skip to content

Commit

Permalink
ver0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
petitviolet committed Feb 8, 2018
1 parent f7a3cdd commit 36a8035
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val VERSION = "0.3.0"
val VERSION = "0.3.1"

val GROUP_ID = "net.petitviolet"

Expand All @@ -11,8 +11,7 @@ lazy val commonDependencies = Seq(
lazy val commonSettings = Seq(
version := VERSION,
organization := GROUP_ID,
scalaVersion := "2.12.4",
crossScalaVersions := Seq("2.11.11", "2.12.4")
scalaVersion := "2.12.4"
)

lazy val root = (project in file("."))
Expand All @@ -26,10 +25,11 @@ lazy val example = (project in file("modules/example"))
.dependsOn(operator)

lazy val operator = (project in file(s"modules/$PROJECT_NAME"))
.settings(commonSettings: _*)
.settings(
commonSettings,
name := PROJECT_NAME,
libraryDependencies ++= commonDependencies
libraryDependencies ++= commonDependencies,
crossScalaVersions := Seq("2.11.11", "2.12.4")
)
// .settings(testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-u", {val dir = System.getenv("CI_REPORTS"); if(dir == null) "target/reports" else dir} ))
// .settings(testOptions in Test += Tests.Argument("-oI"))
Expand Down

0 comments on commit 36a8035

Please sign in to comment.