-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
45 lines (32 loc) · 1.01 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
organizationName := "Opalia Systems"
organizationHomepage := Some(url("https://opalia.systems"))
organization := "systems.opalia"
name := "commons-core"
description := "A basic collection of patterns and utilities for Scala"
homepage := Some(url("https://github.com/OpaliaSystems/opalia-commons-core"))
licenses += "Apache License, Version 2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt")
version := "3.1.0"
scalaVersion := "3.2.2"
scmInfo := Some(
ScmInfo(
url("https://github.com/OpaliaSystems/opalia-commons-core"),
"scm:git:https://github.com/OpaliaSystems/opalia-commons-core.git",
"scm:git:git@github.com:OpaliaSystems/opalia-commons-core.git"
)
)
developers := List(
Developer(
id = "brettaufheber",
name = "Eric Löffler",
email = "eric.loeffler@opalia.systems",
url = url("https://github.com/brettaufheber")
)
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.15" % Test
)
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-feature"
)