-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from ThoughtWorksInc/dynver
Switch to sbt-dynver
- Loading branch information
Showing
33 changed files
with
58 additions
and
2,378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.* | ||
target/ | ||
local.sbt | ||
secret/ | ||
*.class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
version = "1.5.1" | ||
maxColumn = 120 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,18 @@ | ||
organization in ThisBuild := "com.thoughtworks.sde" | ||
organization in ThisBuild := "com.thoughtworks.each" | ||
|
||
publishArtifact := false | ||
publish / skip := true | ||
|
||
// Workaround for randomly Travis CI fail | ||
parallelExecution in Global := false | ||
|
||
fork in Global in compile := true | ||
|
||
crossScalaVersions in ThisBuild := Seq("2.10.7", "2.11.12", "2.12.8") | ||
|
||
description in ThisBuild := "A collection of Scala language extension for specific domains." | ||
|
||
lazy val core = crossProject.crossType(CrossType.Pure) | ||
|
||
lazy val coreJVM = core.jvm.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val coreJS = core.js.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val each = crossProject.crossType(CrossType.Pure).dependsOn(core, `comprehension-monad`) | ||
|
||
lazy val eachJVM = each.jvm.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val eachJS = each.js.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val `comprehension-monad` = crossProject.crossType(CrossType.Pure) | ||
|
||
lazy val `comprehension-monadJVM` = `comprehension-monad`.jvm.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val `comprehension-monadJS` = `comprehension-monad`.js.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val future = crossProject.crossType(CrossType.Pure).dependsOn(core) | ||
|
||
lazy val futureJS = future.js.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val futureJVM = future.jvm.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val source = crossProject.crossType(CrossType.Pure).dependsOn(core) | ||
|
||
lazy val sourceJS = source.js.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val sourceJVM = source.jvm.addSbtFiles(file("../build.sbt.shared")) | ||
|
||
lazy val gen = crossProject.crossType(CrossType.Pure).dependsOn(core) | ||
lazy val each = crossProject.crossType(CrossType.Pure) | ||
|
||
lazy val genJS = gen.js.addSbtFiles(file("../build.sbt.shared")) | ||
lazy val eachJVM = each.jvm | ||
|
||
lazy val genJVM = gen.jvm.addSbtFiles(file("../build.sbt.shared")) | ||
lazy val eachJS = each.js | ||
|
||
startYear in ThisBuild := Some(2015) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
48 changes: 0 additions & 48 deletions
48
...ion-monad/src/main/scala/com/thoughtworks/sde/comprehensionMonad/ComprehensionMonad.scala
This file was deleted.
Oops, something went wrong.
67 changes: 0 additions & 67 deletions
67
...monad/src/test/scala/com/thoughtworks/sde/comprehensionMonad/ComprehensionMonadTest.scala
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.