Skip to content

Commit f81343b

Browse files
committed
2 parents 22c3ff5 + 76b6a83 commit f81343b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Download jar file from [the release page](https://github.com/gitbucket/gitbucket
1818

1919
## Build from source
2020

21-
1. Hit `./sbt.sh package` in the root directory of this repository.
22-
2. Copy `target/scala-2.11/gitbucket-emoji-plugin_2.11-x.x.x.jar` into `GITBUCKET_HOME/plugins`.
21+
1. Install sbt and hit `sbt package` in the root directory of this repository.
22+
2. Copy `target/scala-2.12/gitbucket-emoji-plugin_2.12-x.x.x.jar` into `GITBUCKET_HOME/plugins`.
2323
3. Restart GitBucket.

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ val ProjectVersion = "4.5.0-SNAPSHOT"
55
organization := Organization
66
name := ProjectName
77
version := ProjectVersion
8-
scalaVersion := "2.12.1"
8+
scalaVersion := "2.12.2"
99

1010
libraryDependencies ++= Seq(
11-
"io.github.gitbucket" %% "gitbucket" % "4.11.0" % "provided",
11+
"io.github.gitbucket" %% "gitbucket" % "4.12.0" % "provided",
1212
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
1313
)
1414

1515
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
16-
javacOptions in compile ++= Seq("-target", "7", "-source", "7")
16+
javacOptions in compile ++= Seq("-target", "8", "-source", "8")
1717

1818
useJCenter := true

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 0.13.13
1+
sbt.version = 0.13.15

0 commit comments

Comments
 (0)