-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
46 lines (36 loc) · 1.22 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
name := "scalikejdbc-sqlsyntax-ext"
organization := "com.github.roundrop"
description := "ScalikeJDBC's SQLSyntax extension"
scalaVersion := "2.12.3"
crossScalaVersions := Seq("2.12.3", "2.11.11")
licenses := Seq(("Apache License, Version 2.0", url("http://www.apache.org/licenses/LICENSE-2.0")))
homepage := Some(new URL("https://github.com/roundrop/scalikejdbc-sqlsyntax-ext"))
startYear := Some(2016)
scalacOptions := Seq(
"-encoding", "UTF-8",
"-feature",
"-unchecked",
"-deprecation",
"-Xfatal-warnings",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Xfuture")
libraryDependencies ++= Seq(
"org.scalikejdbc" %% "scalikejdbc" % "3.1.0" % Provided,
"org.scalatest" %% "scalatest" % "3.0.3" % Test)
pomExtra in Global := {
<scm>
<url>git@github.com:roundrop/scalikejdbc-sqlsyntax-ext.git</url>
<connection>scm:git:git@github.com:roundrop/scalikejdbc-sqlsyntax-ext.git</connection>
<developerConnection>scm:git:git@github.com:roundrop/scalikejdbc-sqlsyntax-ext.git</developerConnection>
</scm>
<developers>
<developer>
<id>roundrop</id>
<name>Ryuji Yamashita</name>
<email>roundrop@gmail.com</email>
</developer>
</developers>
}