Skip to content

Commit 6050d2c

Browse files
authored
Merge pull request #75 from BToersche/master
Updated to latest genjavadoc, sbt and scala versions
2 parents d212d9d + c416848 commit 6050d2c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ script:
1212
matrix:
1313
include:
1414
- env: SBT_VERSION="0.13.18"
15-
scala: 2.10.7
15+
scala:
16+
- 2.10.7
1617

17-
- env: SBT_VERSION="1.2.7"
18-
scala: 2.12.8
18+
- env: SBT_VERSION="1.2.8"
19+
scala:
20+
- 2.12.8
1921

2022
cache:
2123
directories:

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ lazy val root = (project in file(".")).
66
settings(commonSettings: _*).
77
settings(
88
sbtPlugin := true,
9-
crossSbtVersions := Vector("0.13.18", "1.2.7"),
9+
crossSbtVersions := Vector("0.13.18", "1.2.8"),
1010
name := "sbt-unidoc",
1111
description := "sbt plugin to create a unified API document across projects",
1212
licenses := Seq("Apache License v2" -> url("http://www.apache.org/licenses/LICENSE-2.0.html")),

src/main/scala/sbtunidoc/GenJavadocPlugin.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ object GenJavadocPlugin extends AutoPlugin {
1010
}
1111
import autoImport._
1212

13-
override def globalSettings = unidocGenjavadocVersion := "0.13"
13+
override def globalSettings = unidocGenjavadocVersion := "0.15"
1414

1515
override def requires = JvmPlugin
1616

0 commit comments

Comments
 (0)