forked from mraad/WebMercator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
39 lines (30 loc) · 1007 Bytes
/
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
organization := "com.esri"
name := "webmercator"
version := "1.4"
isSnapshot := true
publishMavenStyle := true
crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.8")
resolvers += Resolver.mavenLocal
libraryDependencies += "junit" % "junit" % "4.12" % "test"
assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false)
pomExtra :=
<url>https://github.com/mraad/WebMercator</url>
<licenses>
<license>
<name>Apache License, Verision 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:mraad/WebMercator.git</url>
<connection>scm:git:[email protected]:mraad/WebMercator.git</connection>
</scm>
<developers>
<developer>
<id>mraad</id>
<name>Mansour Raad</name>
<url>https://github.com/mraad</url>
<email>[email protected]</email>
</developer>
</developers>