forked from stephenc/eaio-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
41 lines (28 loc) · 1 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
scalaVersion := "2.12.8"
name := "eaio-uuid"
organization := "com.github.xuwei-k"
javacOptions in compile ++= Seq("-target", "8", "-source", "8")
javacOptions in (Compile, doc) ++= Seq("-locale", "en_US")
version := "3.5.0-SNAPSHOT"
licenses := Seq("MIT License" -> url("https://opensource.org/licenses/mit-license"))
homepage := Some(url("https://github.com/xuwei-k/eaio-uuid"))
pomExtra := (
<developers>
<developer>
<id>xuwei-k</id>
<name>Kenji Yoshida</name>
<url>https://github.com/xuwei-k</url>
</developer>
</developers>
<scm>
<url>[email protected]:xuwei-k/eaio-uuid.git</url>
<connection>scm:git:[email protected]:xuwei-k/eaio-uuid.git</connection>
</scm>
)
description := "An implementation of the UUIDs and GUIDs specification in Java. UUIDs are 128 bit long identifiers that are guaranteed to be unique."
publishMavenStyle := true
crossPaths := false
autoScalaLibrary := false
libraryDependencies ++= Seq(
"com.novocode" % "junit-interface" % "0.11" % "test",
)