-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
36 lines (29 loc) · 962 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
import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations._
organization := "net.joewing"
name := "scalacad"
homepage := Some(url("https://github.com/joewing/ScalaCad"))
startYear := Some(2018)
description := "A Scala DSL for Constructive Solid Geometry"
licenses += ("BSD Simplified", url("https://opensource.org/licenses/BSD-3-Clause"))
scalaVersion := "2.13.2"
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.6",
"org.scalatest" %% "scalatest" % "3.0.0" % "test"
)
releaseIgnoreUntrackedFiles := true
releaseProcess := Seq[ReleaseStep](
inquireVersions,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
publishArtifacts,
setNextVersion,
commitNextVersion,
pushChanges
)
bintrayOrganization := Some("joewing")
bintrayRepository := "maven"
bintrayPackageLabels := Seq("scala", "csg", "cad")
fork := true
run / javaOptions += "-Xmx12G"