Skip to content

Commit 9f0a4ff

Browse files
committed
Release 1.7.0
1 parent cef911d commit 9f0a4ff

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In default, following Maven repositories become available by installing this plu
1010
- `http(s)://GITBUCKET_HOST/maven/snapshots`
1111

1212
You can deploy artifacts to these repositories via WebDAV with your GitBucket account.
13-
13+
1414
Also you can deploy via SSH (SCP) with public key authentication using keys registered in GitBucket. In this case, use following configurations to connect via SSH:
1515

1616
- Host: Hostname of GitBucket
@@ -27,6 +27,7 @@ You can specify whether artifacts are overwritable for each repository. In addit
2727

2828
Plugin version | GitBucket version
2929
:--------------|:--------------------
30+
1.7.x | 4.36.x -
3031
1.6.x | 4.35.x -
3132
1.5.x | 4.32.x -
3233
1.4.x | 4.30.x -

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "gitbucket-maven-repository-plugin"
22
organization := "io.github.gitbucket"
3-
version := "1.6.0"
3+
version := "1.7.0"
44
scalaVersion := "2.13.6"
55
gitbucketVersion := "4.36.2"
66
scalacOptions += "-deprecation"

src/main/scala/Plugin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ class Plugin extends gitbucket.core.plugin.Plugin with MavenRepositoryService {
3737
new Version("1.3.2"),
3838
new Version("1.4.0"),
3939
new Version("1.5.0"),
40-
new Version("1.6.0")
40+
new Version("1.6.0"),
41+
new Version("1.7.0")
4142
)
4243

4344
override val sshCommandProviders = Seq({

0 commit comments

Comments
 (0)