Skip to content

Commit

Permalink
Merge pull request deeplearning4j#84 from izhangzhihao/RemoveGitSubMo…
Browse files Browse the repository at this point in the history
…dule

Drop submodule RAII.scala in favor of libraryDepenencies (close deeplearning4j#60)
  • Loading branch information
Atry committed May 10, 2017
2 parents e0a856c + 18a1ddd commit d166617
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

1 change: 1 addition & 0 deletions Lift/build.sbt
@@ -1,2 +1,3 @@
libraryDependencies += "com.chuusai" %% "shapeless" % "2.3.2"
libraryDependencies += "com.thoughtworks.raii" %% "asynchronous" % "1.0.0-M3"
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)
1 change: 0 additions & 1 deletion RAII.scala
Submodule RAII.scala deleted from a1670a
1 change: 1 addition & 0 deletions Tape/build.sbt
@@ -1 +1,2 @@
libraryDependencies += "org.scalaz" %% "scalaz-concurrent" % "7.2.11"
libraryDependencies += "com.thoughtworks.raii" %% "asynchronous" % "1.0.0-M3"
8 changes: 4 additions & 4 deletions build.sbt
@@ -1,8 +1,8 @@
parallelExecution in Global := false

lazy val Tape = project.dependsOn(logs, ProjectRef(file("RAII.scala"), "asynchronous"))
lazy val Tape = project.dependsOn(logs)

lazy val tapefactories = project.dependsOn(Tape, ProjectRef(file("RAII.scala"), "asynchronous"), Caller)
lazy val tapefactories = project.dependsOn(Tape, Caller)

lazy val Caller = project

Expand Down Expand Up @@ -37,11 +37,11 @@ lazy val `differentiable-Double` = project
}
}.taskValue)

lazy val Lift = project.dependsOn(Tape, ProjectRef(file("RAII.scala"), "asynchronous"))
lazy val Lift = project.dependsOn(Tape)

lazy val math = project.dependsOn(Lift)

lazy val `differentiable-Any` = project.dependsOn(Tape, ProjectRef(file("RAII.scala"), "asynchronous"))
lazy val `differentiable-Any` = project.dependsOn(Tape)

lazy val logs = project.dependsOn(Caller)

Expand Down
3 changes: 2 additions & 1 deletion differentiable-Any/build.sbt
@@ -1 +1,2 @@
libraryDependencies += "org.scalaz" %% "scalaz-effect" % "7.2.11"
libraryDependencies += "org.scalaz" %% "scalaz-effect" % "7.2.11"
libraryDependencies += "com.thoughtworks.raii" %% "asynchronous" % "1.0.0-M3"
3 changes: 2 additions & 1 deletion tapefactories/build.sbt
@@ -1,2 +1,3 @@
scalacOptions += "-Xexperimental"
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.3")
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.3")
libraryDependencies += "com.thoughtworks.raii" %% "asynchronous" % "1.0.0-M3"

0 comments on commit d166617

Please sign in to comment.