Skip to content

Commit 0b033e2

Browse files
author
Christos KK Loverdos
committed
Upgrade sbt-verify to 0.4.1
Also drop the errors in favour of warnings for just a bit better developer experience.
1 parent 06bd48d commit 0b033e2

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
@@ -167,8 +167,8 @@ val root = project.in(file("."))
167167
includeScala = true,
168168
includeDependency = true,
169169
excludedJars = Nil,
170-
warnOnUnverifiedFiles = false,
171-
warnOnUnusedVerifications = false
170+
warnOnUnverifiedFiles = true,
171+
warnOnUnusedVerifications = true
172172
),
173173
dist in Universal := ((dist in Universal) dependsOn verify).value
174174
)

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
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4")
1010

0 commit comments

Comments
 (0)