-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (23 loc) · 793 Bytes
/
Copy pathbuild.sbt
File metadata and controls
28 lines (23 loc) · 793 Bytes
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
val Organization = "com.github.amuramatsu"
// Don't forget to also update src/main/scala/Plugin.scala
val Version = "0.5.0"
val Name = "gitbucket-rst-plugin"
gitbucketVersion := "4.32.0"
val ScalaVersion = "2.13.0"
resolvers ++= Seq(
Resolver.jcenterRepo
)
lazy val root = (project in file(".")).
settings(
sourcesInBase := false,
organization := Organization,
name := Name,
version := Version,
scalaVersion := ScalaVersion,
scalacOptions := Seq("-deprecation", "-language:postfixOps"),
libraryDependencies ++= Seq(
"org.planet42" %% "laika-core" % "0.11.0",
"net.sourceforge.htmlcleaner" % "htmlcleaner" % "2.16"
),
assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false)
)