Skip to content

Commit

Permalink
0.2.1 (#71)
Browse files Browse the repository at this point in the history
* update assembly dependencies (#69)

Co-authored-by: Olivier Filangi <[email protected]>

* Fix assembly (#70)

* update assembly dependencies

* fix creation assembly directory

---------

Co-authored-by: Olivier Filangi <[email protected]>

* update version to 0.2.1

---------

Co-authored-by: Olivier Filangi <[email protected]>
  • Loading branch information
ofilangi and Olivier Filangi authored Jul 6, 2023
1 parent 88a8c17 commit 0432d3b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ scmInfo := Some(
)

versionScheme := Some("early-semver")
val static_version = "0.2.0"
val static_version = "0.2.1"
val version_build = scala.util.Properties.envOrElse("PROG_VERSION", static_version )

version := version_build
Expand Down Expand Up @@ -75,6 +75,7 @@ publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(true)
pomIncludeRepository := { _ => false }
publishMavenStyle := true
assembly / target := file("assembly")
assembly / assemblyJarName := s"p2m2-$static_version.jar"
assembly / logLevel := Level.Info
assembly / assemblyMergeStrategy := {
case PathList("META-INF", xs @ _*) => MergeStrategy.last
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN git clone ${REPOSITORY_URL} /p2m2tools_repo
WORKDIR /p2m2tools_repo


RUN git checkout ${BRANCH} && sbt coverageOff assembly
RUN git checkout ${BRANCH} && mkdir -p assembly && sbt coverageOff assembly

COPY p2m2tools /usr/bin/

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.0")
addSbtPlugin("io.crashbox" % "sbt-gpg" % "0.2.1")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")

0 comments on commit 0432d3b

Please sign in to comment.