Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
phearnot committed Sep 2, 2024
1 parent 71443b4 commit b712c86
Showing 1 changed file with 52 additions and 10 deletions.
62 changes: 52 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
enablePlugins(UniversalDeployPlugin, JavaAppPackaging, GitVersioning)
enablePlugins(UniversalDeployPlugin, GitVersioning)

git.useGitDescribe := true
git.baseVersion := "1.0.0"
git.useGitDescribe := true
git.baseVersion := "1.0.0"
git.uncommittedSignifier := Some("DIRTY")

scalaVersion := "2.13.14"
organization := "network.units"
scalaVersion := "2.13.14"
organization := "network.units"
organizationName := "Units Network"
name := "consensus-client"
name := "consensus-client"
maintainer := "Units Network Team"
resolvers ++= Resolver.sonatypeOssRepos("releases") ++ Resolver.sonatypeOssRepos("snapshots") ++ Seq(Resolver.mavenLocal)
libraryDependencies ++= Seq(
"com.wavesplatform" % "node" % "1.5.7" % "provided",
"com.softwaremill.sttp.client3" % "core_2.13" % "3.9.8",
"com.softwaremill.sttp.client3" %% "play-json" % "3.9.8",
"com.github.jwt-scala" %% "jwt-play-json" % "10.0.1"
"com.wavesplatform" % "node" % "1.5.7" % "provided",
"com.softwaremill.sttp.client3" % "core_2.13" % "3.9.8",
"com.softwaremill.sttp.client3" %% "play-json" % "3.9.8",
"com.github.jwt-scala" %% "jwt-play-json" % "10.0.1"
)

scalacOptions ++= Seq(
Expand All @@ -28,6 +29,47 @@ scalacOptions ++= Seq(
"-Xlint"
)

Compile / packageDoc / publishArtifact := false

def makeJarName(
org: String,
name: String,
revision: String,
artifactName: String,
artifactClassifier: Option[String]
): String =
org + "." +
name + "-" +
Option(artifactName.replace(name, "")).filterNot(_.isEmpty).map(_ + "-").getOrElse("") +
revision +
artifactClassifier.filterNot(_.isEmpty).map("-" + _).getOrElse("") +
".jar"

def getJarFullFilename(dep: Attributed[File]): String = {
val filename: Option[String] = for {
module <-
dep.metadata
// sbt 0.13.x key
.get(AttributeKey[ModuleID]("module-id"))
// sbt 1.x key
.orElse(dep.metadata.get(AttributeKey[ModuleID]("moduleID")))
artifact <- dep.metadata.get(AttributeKey[Artifact]("artifact"))
} yield makeJarName(module.organization, module.name, module.revision, artifact.name, artifact.classifier)
filename.getOrElse(dep.data.getName)
}

def universalDepMappings(deps: Seq[Attributed[File]]): Seq[(File, String)] =
for {
dep <- deps
} yield dep.data -> ("lib/" + getJarFullFilename(dep))

Universal / mappings ++= universalDepMappings((Runtime / dependencyClasspath).value.filterNot { p =>
p.get(AttributeKey[ModuleID]("moduleID")).exists { m =>
m.organization == "org.scala-lang" ||
m.organization.startsWith("com.fasterxml.jackson")
}
})

lazy val buildTarballsForDocker = taskKey[Unit]("Package node and grpc-server tarballs and copy them to docker/target")
buildTarballsForDocker := {
IO.copyFile(
Expand Down

0 comments on commit b712c86

Please sign in to comment.