Skip to content

Commit

Permalink
Needs fixes in the other repo
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioPinheiro committed Dec 19, 2023
1 parent 9c3d383 commit b71bcae
Show file tree
Hide file tree
Showing 5 changed files with 1,594 additions and 38 deletions.
17 changes: 11 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import org.scoverage.coveralls.Imports.CoverallsKeys.*
import sbtbuildinfo.BuildInfoPlugin.autoImport.*

externalResolvers += "ScalaLibrary packages" at "https://maven.pkg.github.com/input-output-hk/anoncreds-rs" // use plugin"sbt-github-packages"

inThisBuild(
Seq(
organization := "io.iohk.atala",
Expand All @@ -10,7 +12,8 @@ inThisBuild(
releaseUseGlobalVersion := false,
versionScheme := Some("semver-spec"),
githubOwner := "input-output-hk",
githubRepository := "atala-prism-building-blocks"
githubRepository := "atala-prism-building-blocks",
resolvers += "Local Maven Repository" at "file://" + Path.userHome.absolutePath + "/.m2/repository",
)
)

Expand Down Expand Up @@ -420,7 +423,8 @@ val commonSetttings = Seq(
val overrides = licenseOverrides.value.lift
val depExclusions = licenseDepExclusions.value.lift
val originatingModule = DepModuleInfo(organization.value, name.value, version.value)
val resolution = DependencyResolution(new LicenseReportCustomDependencyResolution(ivyConfiguration.value, ivyModule.value))
val resolution =
DependencyResolution(new LicenseReportCustomDependencyResolution(ivyConfiguration.value, ivyModule.value))
license.LicenseReport.makeReport(
ivyModule.value,
resolution,
Expand Down Expand Up @@ -736,10 +740,11 @@ lazy val polluxAnoncreds = project
.enablePlugins(JavaAppPackaging)
.settings(
name := "pollux-anoncreds",
Compile / unmanagedJars += baseDirectory.value / "anoncreds-jvm-1.0-SNAPSHOT.jar",
Compile / unmanagedResourceDirectories ++= Seq(
baseDirectory.value / "native-lib" / "NATIVE"
),
// Compile / unmanagedJars += baseDirectory.value / "anoncreds-jvm-1.0-SNAPSHOT.jar",
// Compile / unmanagedResourceDirectories ++= Seq(
// baseDirectory.value / "native-lib" / "NATIVE"
// ),
libraryDependencies += "io.iohk.atala.prism.anoncredskmp" % "anoncreds-kmp-jvm" % "0.3.5-M2",
libraryDependencies ++= D_Pollux_AnonCreds.baseDependencies
)

Expand Down
Loading

0 comments on commit b71bcae

Please sign in to comment.