Skip to content

Commit 78e5228

Browse files
Christos KK LoverdosŁukasz Gąsior
authored andcommitted
Upgrade sbt-verify to 0.4.1
Also drop the errors in favour of warnings for just a bit better developer experience.
1 parent 8814879 commit 78e5228

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.circleci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ WORKDIR /home/circleci
2828
USER circleci
2929

3030
RUN \
31-
git clone https://github.com/input-output-hk/sbt-verify.git &&\
31+
git clone --branch v0.4.1 --depth=1 https://github.com/input-output-hk/sbt-verify.git &&\
3232
cd sbt-verify &&\
3333
sbt publishLocal

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
environment:
55
- SBT: "sbt -v -mem 1024"
66
docker:
7-
- image: rtkaczyk/mantis-circleci:v4
7+
- image: rtkaczyk/mantis-circleci:v6
88
steps:
99
- checkout
1010

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ val root = project.in(file("."))
171171
includeScala = true,
172172
includeDependency = true,
173173
excludedJars = Nil,
174-
warnOnUnverifiedFiles = false,
175-
warnOnUnusedVerifications = false
174+
warnOnUnverifiedFiles = true,
175+
warnOnUnusedVerifications = true
176176
),
177177
dist in Universal := ((dist in Universal) dependsOn verify).value
178178
)

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ addSbtPlugin("org.scoverage" %% "sbt-coveralls" % "1.1.0")
44
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0")
55
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.0.6")
66
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "latest.release")
7-
addSbtPlugin("uk.co.josephearl" % "sbt-verify" % "0.3.0-SNAPSHOT")
7+
addSbtPlugin("uk.co.josephearl" % "sbt-verify" % "0.4.1")
88
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.12")
99

1010
libraryDependencies += "com.trueaccord.scalapb" %% "compilerplugin" % "0.6.6"

0 commit comments

Comments
 (0)