-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
39 lines (32 loc) · 1.64 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
name := "overflowdb-codegen-root"
ThisBuild/organization := "io.shiftleft"
/** scala cross version settings for codegen:
* we need scala 2.12 for the sbt plugin, 2.13 and 3 for everything else */
lazy val codegen_2_12 = Projects.codegen_2_12
lazy val codegen_2_13 = Projects.codegen_2_13
lazy val codegen_3 = Projects.codegen_3
lazy val integrationTestSchemas_3 = Projects.integrationTestSchemas_3
lazy val integrationTestSchemas_2_13 = Projects.integrationTestSchemas_2_13
lazy val integrationTestDomainClasses_2_13 = Projects.integrationTestDomainClasses_2_13
lazy val integrationTestDomainClasses_3 = Projects.integrationTestDomainClasses_3
lazy val integrationTests_2_13 = Projects.integrationTests_2_13
lazy val integrationTests_3 = Projects.integrationTests_3
lazy val sbtPlugin = Projects.sbtPlugin
ThisBuild/resolvers += Resolver.mavenLocal
ThisBuild/Compile/scalacOptions ++= Seq(
"-Xfatal-warnings",
"-feature",
"-deprecation",
"-language:implicitConversions",
)
ThisBuild/licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
ThisBuild/scmInfo := Some(ScmInfo(url("https://github.com/ShiftLeftSecurity/overflowdb-codegen"),
"scm:[email protected]:ShiftLeftSecurity/overflowdb-codegen.git"))
ThisBuild/homepage := Some(url("https://github.com/ShiftLeftSecurity/overflowdb-codegen/"))
ThisBuild/developers := List(
Developer("mpollmeier", "Michael Pollmeier", "[email protected]", url("http://www.michaelpollmeier.com/"))
)
ThisBuild/publishTo := sonatypePublishToBundle.value
publish/skip := true
Global/cancelable := true
Global/onChangedBuildSource := ReloadOnSourceChanges