This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
build.sbt
109 lines (104 loc) · 3.43 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
lazy val scalaJsAngular = (project in file(".")).
enablePlugins(ScalaJSPlugin).
settings(
name := "scalajs-angular",
description := "AngularJS bindings for Scala.js.",
organization := "com.greencatsoft",
version := "0.8-SNAPSHOT",
scalaVersion := "2.11.12",
crossScalaVersions := Seq("2.11.12", "2.12.10"),
scalacOptions ++= Seq("-feature","-deprecation"),
homepage := Some(url("http://github.com/greencatsoft/scalajs-angular")),
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "0.9.2",
"be.doeraene" %%% "scalajs-jquery" % "0.9.1",
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "compile"
),
publishTo := {
val nexus = "https://oss.sonatype.org/"
if(isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
publishMavenStyle := true,
pomIncludeRepository := { _ => false },
pomExtra :=
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:greencatsoft/scalajs-angular.git</url>
<connection>scm:git:git@github.com:greencatsoft/scalajs-angular.git</connection>
</scm>
<developers>
<developer>
<id>mysticfall</id>
<name>Xavier Cho</name>
<url>http://github.com/mysticfall</url>
</developer>
<developer>
<id>mmx900</id>
<name>Setzer Kim</name>
<url>https://github.com/mmx900</url>
</developer>
</developers>
<contributors>
<contributor>
<name>Jokade</name>
<url>https://github.com/jokade</url>
</contributor>
<contributor>
<name>Olivergg</name>
<url>https://github.com/olivergg</url>
</contributor>
<contributor>
<name>Reid Spencer</name>
<url>https://github.com/reid-spencer</url>
</contributor>
<contributor>
<name>Johannes Kastner</name>
<url>https://github.com/jokaICS</url>
</contributor>
<contributor>
<name>math85360</name>
<url>https://github.com/math85360</url>
</contributor>
<contributor>
<name>Erik LaBianca</name>
<url>https://github.com/easel</url>
</contributor>
<contributor>
<name>Johannes Kastner</name>
<url>https://github.com/jokaICS</url>
</contributor>
<contributor>
<name>Tomas Zeman</name>
<url>https://github.com/tzeman77</url>
</contributor>
<contributor>
<name>Sven Wiegand</name>
<url>http://www.sven-wiegand.de</url>
</contributor>
<contributor>
<name>Akos Vandra</name>
<url>https://github.com/axos88</url>
</contributor>
<contributor>
<name>Dominik Winter</name>
<url>https://github.com/0x7fh</url>
</contributor>
<contributor>
<name>Thorbenheins</name>
<url>https://github.com/thorbenheins</url>
</contributor>
<contributor>
<name>Reid Spencer</name>
<url>https://github.com/reid-spencer</url>
</contributor>
</contributors>
)