Skip to content
This repository has been archived by the owner on Jun 1, 2021. It is now read-only.

Commit

Permalink
Upgrade sbt to 0.13.13
Browse files Browse the repository at this point in the history
  • Loading branch information
volkerstampa committed Nov 11, 2016
1 parent a53cca5 commit a5df5cf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions log-viewer/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ publishArtifact in (Test, packageDoc) := false

makeDeploymentSettings(Universal, packageBin in Universal, "zip")

publish <<= publish dependsOn (publish in Universal)

publishLocal <<= publishLocal dependsOn (publishLocal in Universal)
publish := {
(publish in Universal).value
publish.value
}

publishLocal := {
(publishLocal in Universal).value
publishLocal.value
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.11
sbt.version=0.13.13

0 comments on commit a5df5cf

Please sign in to comment.