-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
27 lines (23 loc) · 1.12 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
ThisBuild / version := "1.1.0"
ThisBuild / organization := "io.github.truerss"
ThisBuild / licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
sonatypeCredentialHost := "s01.oss.sonatype.org"
ThisBuild / publishTo := {
val nexus = "https://s01.oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots/")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
ThisBuild / homepage := Some(url("https://github.com/truerss/truerss"))
ThisBuild / scmInfo := Some(ScmInfo(url("https://github.com/truerss/content-extractor"), "git@github.com:truerss/content-extractor.git"))
ThisBuild / developers := List(Developer("mike", "mike", "mike.fch1@gmail.com", url("https://github.com/fntz")))
ThisBuild / licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
publishMavenStyle := true
crossPaths := false
libraryDependencies ++= Seq(
"org.jsoup" % "jsoup" % "1.17.2",
"org.junit.jupiter" % "junit-jupiter" % "5.10.2" % Test,
"net.aichler" % "jupiter-interface" % "0.11.1" % Test
)