Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: replace deprecated jcenter #210

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
CI: replace deprecated jcenter
  • Loading branch information
aramikm committed Aug 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit eda6ac45c783678194b6c8f474626cf2457ee900
9 changes: 5 additions & 4 deletions java/example-graphsdk-client/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -17,10 +17,6 @@ java.sourceCompatibility = JavaVersion.VERSION_17

// Use the 'repositories' block to declare where to find your dependencies
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()

// Add the GitHub Packages repository as a source for resolving dependencies
maven {
name = "GithubPackages"
@@ -30,6 +26,11 @@ repositories {
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
}
}

// You can declare any Maven/Ivy/file repository here.
mavenLocal()
mavenCentral()
maven("https://jitpack.io")
}

dependencies {
Loading
Oops, something went wrong.