Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ This is an example of GitBucket plug-in. This plug-in provides code snippet repo
## Instllation

1. Hit `./sbt.sh package` in the root directory of this repository.
2. Copy `target/scala-2.11/gitbucket-gist-plugin_2.11-1.2.jar` into `GITBUCKET_HOME/plugins`.
2. Copy `target/scala-2.11/gitbucket-gist-plugin_2.11-1.3.jar` into `GITBUCKET_HOME/plugins`.
3. Restart GitBucket.
4 changes: 2 additions & 2 deletions project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object MyBuild extends Build {

val Organization = "jp.sf.amateras"
val Name = "gitbucket-gist-plugin"
val Version = "1.2"
val Version = "1.3"
val ScalaVersion = "2.11.6"

lazy val project = Project (
Expand All @@ -25,7 +25,7 @@ object MyBuild extends Build {
"amateras-repo" at "http://amateras.sourceforge.jp/mvn/"
),
libraryDependencies ++= Seq(
"gitbucket" % "gitbucket-assembly" % "3.2.0" % "provided",
"gitbucket" % "gitbucket-assembly" % "3.3.0" % "provided",
"com.typesafe.play" %% "twirl-compiler" % "1.0.4" % "provided",
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
),
Expand Down