forked from rphillips-nz/scala-thumbnailer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
46 lines (31 loc) · 1.75 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
// ------------------------------------------------------------------------- \\
// SBT Build File \\
// ------------------------------------------------------------------------- \\
organization := "com.themillhousegroup"
name := "scala-thumbnailer"
developers := List(
Developer(id="minettiandrea", name="Andrea Minetti", email="[email protected]", url=url("https://wavein.ch")),
Developer(id="themillhousegroup", name="John Marshall", email="[email protected]", url=url("http://www.themillhousegroup.com")),
Developer(id="rphillips-nz", name="Ross Phillips",email="",url=url("https://rossphillips.nz"))
)
scalaVersion := "2.12.5"
libraryDependencies ++= Seq(
"org.apache.pdfbox" % "pdfbox" % "2.0.3",
"org.imgscalr" % "imgscalr-lib" % "4.2",
"commons-io" % "commons-io" % "2.4",
"org.ostermiller" % "utils" % "1.07.00",
"fr.opensagres.xdocreport" % "org.apache.poi.xwpf.converter.pdf" % "1.0.2",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0"
)
// ------------------------------------------------------------------------- \\
// Publishing \\
// ------------------------------------------------------------------------- \\
publishArtifact in (Compile, packageDoc) := false
licenses += ("GPL-2.0", url("http://www.gnu.org/licenses/gpl-2.0.txt"))
homepage := Some(url("https://github.com/themillhousegroup/scala-thumbnailer"))
publishArtifact in (Compile, packageDoc) := true
// For all Sonatype accounts created on or after February 2021
sonatypeCredentialHost := "s01.oss.sonatype.org"
// Only for non-SNAPSHOT releases
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
// sonatypeProfileName := "io.d11"