Skip to content

Commit

Permalink
Merge pull request #3 from SIkebe/gitbucket-4.32.0
Browse files Browse the repository at this point in the history
Bump to GItBucket 4.32.0
  • Loading branch information
SIkebe committed Aug 20, 2019
2 parents fdf8118 + dfc36a4 commit 84e4f3a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
@@ -1,8 +1,8 @@
name := "gitbucket-mirror-plugin"
organization := "io.github.gitbucket"
version := "1.0.2"
scalaVersion := "2.12.3"
gitbucketVersion := "4.20.0"
scalaVersion := "2.13.0"
gitbucketVersion := "4.32.0"

libraryDependencies ++= Seq()
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version = 1.0.2
sbt.version = 1.2.8
2 changes: 1 addition & 1 deletion project/plugins.sbt
@@ -1 +1 @@
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.2.0")
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.5.0")
Expand Up @@ -9,6 +9,7 @@ import org.scalatra.{Ok, _}

import scala.concurrent.Await
import scala.concurrent.duration._
import scala.language.postfixOps
import scala.util.Try

class MirrorApiController extends ControllerBase
Expand Down
Expand Up @@ -8,6 +8,7 @@ import org.slf4j.LoggerFactory

import scala.concurrent.Await
import scala.concurrent.duration._
import scala.language.postfixOps

class MirrorController extends ControllerBase
with AccountService
Expand Down
Expand Up @@ -7,6 +7,7 @@ import profile.blockingApi._

import scala.concurrent.duration._
import scala.concurrent.Await
import scala.language.postfixOps

class MirrorRepositoryHook extends RepositoryHook with MirrorService {

Expand Down
Expand Up @@ -4,7 +4,7 @@ import org.eclipse.jgit.api.{Git, TransportCommand}
import org.eclipse.jgit.lib.{Constants, Repository}
import org.eclipse.jgit.transport.RefSpec

import scala.collection.JavaConverters._
import scala.jdk.CollectionConverters._

class PushMirrorCommand(repo: Repository) extends TransportCommand[PushMirrorCommand, Unit](repo) {

Expand Down

0 comments on commit 84e4f3a

Please sign in to comment.