[info] Resolving org.scala-js#scalajs-dom_2.11;0.6.1 ...
[warn] module not found: org.scala-js#scalajs-dom_2.11;0.6.1
[warn] ==== local: tried
[warn] /Users/garyhewett/.ivy2/local/org.scala-js/scalajs-dom_2.11/0.6.1/ivys/ivy.xml
[warn] ==== public: tried
[warn] https://repo1.maven.org/maven2/org/scala-js/scalajs-dom_2.11/0.6.1/scalajs-dom_2.11-0.6.1.pom
[warn] ==== activator-launcher-local: tried
[warn] /Applications/TechanoUtil/activator-1.3.10-minimal/repository/org.scala-js/scalajs-dom_2.11/0.6.1/ivys/ivy.xml
[warn] ==== typesafe-releases: tried
[warn] ==== typesafe-ivy-releasez: tried
[warn] https://repo.typesafe.com/typesafe/ivy-releases/org.scala-js/scalajs-dom_2.11/0.6.1/ivys/ivy.xml
[warn] ==== scalaz-bintray: tried
[warn] http://dl.bintray.com/scalaz/releases/org/scala-js/scalajs-dom_2.11/0.6.1/scalajs-dom_2.11-0.6.1.pom
[info] Resolving jline#jline;2.12.1 ...
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: org.scala-js#scalajs-dom_2.11;0.6.1: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
--
You received this message because you are subscribed to the Google Groups "Scala.js" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-js+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-js/6da3ca14-4ae1-4f25-a72d-6750dc36862a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
import sbt.Project.projectToRefimport org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._import NativePackagerKeys._
name := """Techano"""
version := "0.1-SNAPSHOT"
lazy val clients = Seq(client)// lazy val scalaV = "2.10.6"lazy val scalaV = "2.11.8"
lazy val techano = (project in file(".")).settings( scalaVersion := scalaV, libraryDependencies ++= Seq( "mysql" % "mysql-connector-java" % "5.1.38", jdbc, "com.typesafe.play" %% "anorm" % "2.5.0", "javax.mail" % "mail" % "1.5.0-b01", "org.apache.commons" % "commons-lang3" % "3.4", "org.jsoup" % "jsoup" % "1.8.3", "org.webjars" %% "webjars-play" % "2.4.0", "com.lihaoyi" %%% "upickle" % "0.3.4", "com.lihaoyi" %%% "scalatags" % "0.5.5", "com.vmunier" %% "play-scalajs-scripts" % "0.5.0", "org.scala-js" %%% "scalajs-dom" % "0.6.1", cache, filters, ws, specs2 % Test ), resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases").enablePlugins(PlayScala). aggregate(clients.map(projectToRef): _*). dependsOn(sharedJvm)
lazy val client = (project in file("public/javascripts")).settings( scalaVersion := scalaV, libraryDependencies ++= Seq( "org.scala-js" %%% "scalajs-dom" % "0.6.1", "com.lihaoyi" %%% "scalatags" % "0.5.5", "com.lihaoyi" %%% "scalarx" % "0.2.8", "com.lihaoyi" %%% "upickle" % "0.3.4" )).enablePlugins(ScalaJSPlugin, ScalaJSPlay). dependsOn(sharedJs)
lazy val shared = (crossProject.crossType(CrossType.Pure) in file("tkscalajvmjs")). settings( unmanagedSourceDirectories in Compile += baseDirectory.value / "public/javascripts", scalaVersion := scalaV ). jsConfigure(_ enablePlugins ScalaJSPlay)
lazy val sharedJvm = shared.jvmlazy val sharedJs = shared.js
// ScalaJS settings?persistLauncher in Compile := truepersistLauncher in Test := false
lazy val appJS = shared.jslazy val appJVM = shared.jvm.settings( unmanagedResourceDirectories in Assets += (crossTarget in client).value, (resources in Compile) += (fastOptJS in (appJS, Compile)).value.data)
// Play provides two styles of routers, one expects its actions to be injected, the// other, legacy style, accesses its actions statically.routesGenerator := InjectedRoutesGenerator
import sbt.Project.projectToRefimport org.scalajs.sbtplugin.ScalaJSPlugin
scalaJSUseRhino in Global := false
name := """TOPPROJECT"""
version := "0.1-SNAPSHOT"
// lazy val scalaV = "2.10.6"lazy val scalaV = "2.11.8"
scalaVersion in ThisBuild := scalaV
lazy val techano = (project in file("modules/techano")).enablePlugins(PlayScala)
lazy val topproject = (project in file(".")).settings( scalaVersion := scalaV, libraryDependencies ++= Seq( "mysql" % "mysql-connector-java" % "5.1.38", jdbc, "com.typesafe.play" %% "anorm" % "2.5.0", "javax.mail" % "mail" % "1.5.0-b01", "org.apache.commons" % "commons-lang3" % "3.4", "org.jsoup" % "jsoup" % "1.8.3", "com.vmunier" %% "play-scalajs-scripts" % "0.5.0", "org.scala-js" %%% "scalajs-dom" % "0.9.0", cache, filters, ws, specs2 % Test )).enablePlugins(PlayScala). aggregate(techano). dependsOn(techano). settings(aggregateReverseRoutes := Seq(techano))
// scalaVersion := "2.11.6"
// be sure to put dependencies into modules (build.sbt) files as well !!!!!
// addSbtPlugin("com.typesafe.sbt" % "sbt-jshint" % "1.0.3")
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
// Play provides two styles of routers, one expects its actions to be injected, the// other, legacy style, accesses its actions statically.routesGenerator := InjectedRoutesGenerator
[info] Resolving org.scala-js#scalajs-dom_2.11;0.6.1 ...
[warn] module not found: org.scala-js#scalajs-dom_2.11;0.6.1
[warn] ==== local: tried
[warn] /Users/garyhewett/.ivy2/local/org.scala-js/scalajs-dom_2.11/0.6.1/ivys/ivy.xml
[warn] ==== public: tried
[warn] https://repo1.maven.org/maven2/org/scala-js/scalajs-dom_2.11/0.6.1/scalajs-dom_2.11-0.6.1.pom
[warn] ==== activator-launcher-local: tried
[warn] /Applications/TechanoUtil/activator-1.3.10-minimal/repository/org.scala-js/scalajs-dom_2.11/0.6.1/ivys/ivy.xml
[warn] ==== typesafe-releases: tried
[warn] https://repo.typesafe.com/typesafe/releases/org/scala-js/scalajs-dom_2.11/0.6.1/scalajs-dom_2.11-0.6.1.pom
[warn] ==== typesafe-ivy-releasez: tried
[warn] https://repo.typesafe.com/typesafe/ivy-releases/org.scala-js/scalajs-dom_2.11/0.6.1/ivys/ivy.xml
[warn] ==== scalaz-bintray: tried
[warn] http://dl.bintray.com/scalaz/releases/org/scala-js/scalajs-dom_2.11/0.6.1/scalajs-dom_2.11-0.6.1.pom
[info] Resolving jline#jline;2.12.1 ...
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: org.scala-js#scalajs-dom_2.11;0.6.1: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn]
"org.scala-js" %%% "scalajs-dom" % "0.6.1"
"org.scala-js" %%% "scalajs-dom" % "0.9.0"
[info] Resolving org.scala-js#scalajs-dom_2.11;0.9.0 ...
[warn] module not found: org.scala-js#scalajs-dom_2.11;0.9.0
[warn] ==== local: tried
[warn] /Users/garyhewett/.ivy2/local/org.scala-js/scalajs-dom_2.11/0.9.0/ivys/ivy.xml
[warn] ==== public: tried
[warn] https://repo1.maven.org/maven2/org/scala-js/scalajs-dom_2.11/0.9.0/scalajs-dom_2.11-0.9.0.pom
[warn] ==== activator-launcher-local: tried
[warn] /Applications/TechanoUtil/activator-1.3.10-minimal/repository/org.scala-js/scalajs-dom_2.11/0.9.0/ivys/ivy.xml
[warn] ==== typesafe-releases: tried
[warn] https://repo.typesafe.com/typesafe/releases/org/scala-js/scalajs-dom_2.11/0.9.0/scalajs-dom_2.11-0.9.0.pom
[warn] ==== typesafe-ivy-releasez: tried
[warn] https://repo.typesafe.com/typesafe/ivy-releases/org.scala-js/scalajs-dom_2.11/0.9.0/ivys/ivy.xml
[warn] ==== scalaz-bintray: tried
[warn] http://dl.bintray.com/scalaz/releases/org/scala-js/scalajs-dom_2.11/0.9.0/scalajs-dom_2.11-0.9.0.pom
[info] Resolving jline#jline;2.12.1 ...
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: org.scala-js#scalajs-dom_2.11;0.9.0: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
--
You received this message because you are subscribed to the Google Groups "Scala.js" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-js+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-js/cba15a3c-cb4b-47c7-a7b3-df410b2164d8%40googlegroups.com.
// "com.vmunier" %% "play-scalajs-scripts" % "0.5.0",// "org.scala-js" %%% "scalajs-dom" % "0.9.0",