Skip to content

Commit

Permalink
fix: end to end tests, missing maven repo url
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianIOHK committed Oct 26, 2023
1 parent ba8447c commit 0d8ea02
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/end-to-end/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ repositories {
password = System.getenv("ATALA_GITHUB_TOKEN")
}
}
maven {
url = uri("https://maven.pkg.github.com/hyperledger-labs/open-enterprise-agent/")
credentials {
username = System.getenv("ATALA_GITHUB_ACTOR")
password = System.getenv("ATALA_GITHUB_TOKEN")
}
}
mavenLocal()
}

Expand Down

0 comments on commit 0d8ea02

Please sign in to comment.