Skip to content

Commit

Permalink
chore: update to sbt 1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
msiegenthaler committed Nov 26, 2021
1 parent 1fc33d2 commit 140b892
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.metals
target
.vscode
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
FROM openjdk:13
FROM openjdk:11-jdk
LABEL maintainer="mario.siegenthaler@linkyard.ch"

ENV SBT_VERSION 1.3.8
ENV SBT_VERSION 1.5.5


# add deps
# - libatomic: needed by protoc
# - git: needed by sbt when we use source dependency
RUN yum install -y -q libatomic git
RUN apt-get update && \
apt-get install -y libatomic1 git && \
rm -rf /var/lib/apt/lists/*

RUN curl -sL https://github.com/sbt/sbt/releases/download/v1.3.8/sbt-1.3.8.tgz | \
RUN curl -sL https://github.com/sbt/sbt/releases/download/v${SBT_VERSION}/sbt-${SBT_VERSION}.tgz | \
tar -xz -C /usr/local

RUN useradd --create-home -s /bin/bash scala
Expand Down
2 changes: 1 addition & 1 deletion init_deps/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.3.8
sbt.version=1.5.5
8 changes: 3 additions & 5 deletions init_deps/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ logLevel := Level.Info

//common plugins

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")

addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")

addSbtPlugin("org.duhemm" % "sbt-errors-summary" % "0.6.3")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.2")
2 changes: 1 addition & 1 deletion init_scala-2.13/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.3.8
sbt.version=1.5.5

0 comments on commit 140b892

Please sign in to comment.