Skip to content
This repository was archived by the owner on Jul 12, 2021. It is now read-only.

Commit 17ab287

Browse files
author
Alex Zolotko
committed
Update dependencies and Scala versions
1 parent fb07300 commit 17ab287

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add following to `project/plugins.sbt`
1717
```
1818
resolvers += "TNM" at "https://nexus.thenewmotion.com/content/groups/public"
1919
20-
addSbtPlugin("com.newmotion" % "sbt-build-seed" % "5.0.4")
20+
addSbtPlugin("com.newmotion" % "sbt-build-seed" % "5.0.7")
2121
```
2222

2323
To develop a library in your build.sbt use:

ScalaVersion.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package tnm
22

33
object ScalaVersion {
4-
val curr = "2.13.2"
5-
val prev = "2.12.11"
4+
val curr = "2.13.3"
5+
val prev = "2.12.12"
66
val aged = "2.11.12"
77
}

build.sbt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import Defaults._
2-
import aether.AetherKeys.aetherCoordinates
32

43
sbtPlugin := true
54
enablePlugins(OssLibPlugin)
65

76
organization := "com.newmotion"
87
name := "sbt-build-seed"
98

10-
crossSbtVersions := Vector("0.13.18", "1.3.0")
9+
crossSbtVersions := Vector("0.13.18", "1.3.13")
1110
releaseCrossBuild := false
1211

1312
scalaVersion := tnm.ScalaVersion.prev
@@ -17,8 +16,8 @@ libraryDependencies ++= {
1716
val scalaV = (scalaBinaryVersion in pluginCrossBuild).value
1817

1918
Seq(
20-
"com.github.gseitz" % "sbt-release" % "1.0.11",
21-
"no.arktekk.sbt" % "aether-deploy" % "0.21"
19+
"com.github.gseitz" % "sbt-release" % "1.0.13",
20+
"no.arktekk.sbt" % "aether-deploy" % "0.25.0"
2221
).map(
2322
sbtPluginExtra(_, sbtV, scalaV)
2423
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.3.0
1+
sbt.version=1.3.13

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
resolvers += "TNM" at "https://nexus.thenewmotion.com/content/groups/public"
22

3-
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11")
4-
addSbtPlugin("no.arktekk.sbt" % "aether-deploy" % "0.21")
3+
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.13")
4+
addSbtPlugin("no.arktekk.sbt" % "aether-deploy" % "0.25.0")
55

66
// Use itself as a plugin
77
unmanagedSourceDirectories in Compile += baseDirectory.value.getParentFile

0 commit comments

Comments
 (0)