-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.sbt
55 lines (53 loc) · 1.9 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
47
48
49
50
51
52
53
54
55
////////////////////////////////////////////////////////////////////////////////
// artifact
////////////////////////////////////////////////////////////////////////////////
name := "persianutils"
description := "A collection of utilities for Scala/Java developers who are targeting Persian (Farsi) speaking users."
version := "5.0"
homepage := Some(url("https://github.com/bahmanm/persianutils"))
licenses += "Apache 2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")
organization := "com.bahmanm"
organizationHomepage := Some(url("http://BahmanM.com"))
////////////////////////////////////////////////////////////////////////////////
// build
////////////////////////////////////////////////////////////////////////////////
scalaVersion := "2.13.16"
libraryDependencies ++= Seq(
"org.specs2" %% "specs2-core" % "4.20.9" % "test"
)
resolvers ++= Resolver.sonatypeOssRepos("snapshots")
resolvers ++= Resolver.sonatypeOssRepos("releases")
scalacOptions in Test ++= Seq("-Yrangepos")
crossScalaVersions := Seq("2.12.18", "2.13.11", "3.3.0")
////////////////////////////////////////////////////////////////////////////////
// sonatype and maven central
////////////////////////////////////////////////////////////////////////////////
useGpg := true
pomIncludeRepository := { _ => false }
versionScheme := Some("semver-spec")
scmInfo := Some(
ScmInfo(
url("https://github.com/bahmanm/persianutils"),
"scm:git@github.com:bahmanm/persianutils.git"
)
)
developers := List(
Developer(
id = "bahmanm",
name = "Bahman Movaqar",
email = "Bahman@BahmanM.com",
url = url("https://BahmanM.com/")
),
Developer(
id = "amirkarimi",
name = "Amir Karimi",
email = "a.karimi.k@gmail.com",
url = url("https://amirkarimi.me/")
),
Developer(
id = "KeivanAbdi",
name = "Keivan Abdi",
email = "keivan.a.khorsand@gmail.com",
url = url("https://keivanabdi.com/")
)
)