-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (30 loc) · 990 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
37
name := "scala-regex-collection"
version := "2.0.1"
scalaVersion := "3.5.2"
organization := "com.github.gekomad"
libraryDependencies += "org.scalameta" %% "munit" % "1.0.2" % Test
scalacOptions ++= Seq("-Xfatal-warnings")
crossScalaVersions := Seq("2.12.20", "2.13.15", "3.5.2")
//sonatype
publishTo := sonatypePublishToBundle.value
logLevel := Level.Debug
pomExtra :=
<licenses>
<license>
<name>Apache 2</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>gekomad</id>
<name>Giuseppe Cannella</name>
<url>https://github.com/gekomad</url>
</developer>
</developers>
<scm>
<url>https://github.com/gekomad/scala-regex-collection</url>
<connection>scm:git:https://github.com/gekomad/scala-regex-collection</connection>
</scm>
<url>https://github.com/gekomad/scala-regex-collection</url>