Skip to content

Commit bfe2352

Browse files
authored
Merge pull request #215 from SethTisue/sbt-1
upgrade to sbt 1
2 parents 8d4c7c3 + 9108be0 commit bfe2352

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

admin/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if [[ "$TRAVIS_TAG" =~ $tagPat ]]; then
3939
echo "Releasing $tagVer on Java version $currentJvmVer according to 'scalaVersionsByJvm' in build.sbt."
4040
fi
4141
42-
extraTarget="+publish-signed"
42+
extraTarget="+publishSigned"
4343
cat admin/gpg.sbt >> project/plugins.sbt
4444
cp admin/publish-settings.sbt .
4545

admin/gpg.sbt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
2-
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3") // only added when publishing, see build.sh
1+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2-1") // only added when publishing, see build.sh

build.sbt

-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ repoName := "async"
1919

2020
version := "0.10.0-SNAPSHOT"
2121

22-
// this line could be removed after https://github.com/scala/sbt-scala-module/issues/48 is fixed
23-
licenses := Seq(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
24-
2522
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
2623
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value % "test" // for ToolBox
2724
libraryDependencies += "junit" % "junit" % "4.12" % "test"

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.18
1+
sbt.version=1.2.8

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "1.0.14")
1+
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.0.0")

0 commit comments

Comments
 (0)