-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.sbt
40 lines (32 loc) · 1.09 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
ThisBuild / organization := "com.socrata"
ThisBuild / version := "2.2.2"
ThisBuild / scalaVersion := "2.12.10"
ThisBuild / crossScalaVersions := Seq(scalaVersion.value, "2.10.4", "2.11.8")
// random stuff Sonatype wants
ThisBuild / pomExtra := (
<url>http://www.github.com/socrata/soda-scala</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git://github.com/socrata/soda-scala.git</url>
<connection>scm:git://github.com/socrata/soda-scala.git</connection>
</scm>
<developers>
<developer>
<name>Robert Macomber</name>
<email>[email protected]</email>
<organization>Socrata</organization>
</developer>
</developers>
)
lazy val sodaConsumer = project in file("soda-consumer-scala")
lazy val sodaPublisher = (project in file("soda-publisher-scala")).
dependsOn(sodaConsumer)
lazy val sodaSample = (project in file("soda-scala-sample")).
dependsOn(sodaPublisher)
publish / skip := true