1
- import SonatypeKeys ._
1
+ // import SonatypeKeys._
2
2
3
3
import sbt .Keys ._
4
4
5
- sonatypeSettings
5
+ // sonatypeSettings
6
6
7
7
lazy val root = project.in(file(" ." )).
8
- enablePlugins(ScalaJSPlugin )
8
+ enablePlugins(ScalaJSPlugin ).settings(
9
+ credentials += Credentials (Path .userHome / " .ivy2" / " .credentials" ),
10
+ resolvers += " NextWave Repo" at " http://maxdevmaster.cloudapp.net:4343/artifactory/nxtwv-maven/" ,
11
+ publishTo := Some (" NextWave Repo" at " http://maxdevmaster.cloudapp.net:4343/artifactory/nxtwv-maven/" )
12
+ // publishMavenStyle := true
13
+ )
9
14
10
15
lazy val demo = (project in file(" demo" ))
11
16
.settings(demoSettings:_* )
@@ -34,11 +39,9 @@ scalaVersion := "2.11.6"
34
39
crossScalaVersions := Seq (" 2.10.4" , " 2.11.5" )
35
40
36
41
libraryDependencies ++= Seq (
37
- " org.scala-js" %%% " scalajs-dom" % " 0.8 .0"
42
+ " org.scala-js" %%% " scalajs-dom" % " 0.9 .0"
38
43
)
39
44
40
- // jsDependencies += "org.webjars" % "flux" % "2.0.2" / "Flux.js"
41
-
42
45
jsDependencies in Test += RuntimeDOM
43
46
44
47
homepage := Some (url(" http://www.surfkit.io/" ))
@@ -50,15 +53,16 @@ scmInfo := Some(ScmInfo(
50
53
" scm:git:git@github.com/coreyauger/scalajs-google-maps.git" ,
51
54
Some (" scm:git:git@github.com:coreyauger/scalajs-google-maps.git" )))
52
55
56
+
53
57
publishMavenStyle := true
54
58
55
- publishTo := {
56
- val nexus = " https://oss.sonatype.org/"
57
- if (isSnapshot.value)
58
- Some (" snapshots" at nexus + " content/repositories/snapshots" )
59
- else
60
- Some (" releases" at nexus + " service/local/staging/deploy/maven2" )
61
- }
59
+ // publishTo := {
60
+ // val nexus = "https://oss.sonatype.org/"
61
+ // if (isSnapshot.value)
62
+ // Some("snapshots" at nexus + "content/repositories/snapshots")
63
+ // else
64
+ // Some("releases" at nexus + "service/local/staging/deploy/maven2")
65
+ // }
62
66
63
67
pomExtra := (
64
68
<developers >
0 commit comments