Skip to content

Commit

Permalink
Removed not used sbt-scala-native plugin and fixed importing the proj…
Browse files Browse the repository at this point in the history
…ect into intellij
  • Loading branch information
LukaszMarchewka committed Aug 11, 2018
1 parent 9aa77a9 commit 29e0815
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,10 @@ lazy val kernel = crossProject(JSPlatform, JVMPlatform, NativePlatform)

lazy val kernelJVM = kernel.jvm
lazy val kernelJS = kernel.js
lazy val kernelNative = kernel.native
lazy val kernelNative = kernel.native.settings(
scalaVersion := "2.11.12",
crossScalaVersions := Seq("2.11.12")
)

lazy val kernelLaws = crossProject(JSPlatform, JVMPlatform)
.crossType(CrossType.Pure)
Expand Down
1 change: 0 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ addSbtPlugin("org.tpolecat" % "tut-plugin" % "0.6.6")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.5.0")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "0.5.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.24")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.7")

0 comments on commit 29e0815

Please sign in to comment.