Skip to content

Commit

Permalink
Change deprecated jcenter() maven repo to mavenCentral()
Browse files Browse the repository at this point in the history
jcenter() repo was closed by the jfrog company and operates in the read-only mode.
Gradle is also planning to deprecate this in the future releases.
For details see: https://blog.gradle.org/jcenter-shutdown

All used lib dependencies seem to be available from the mavenCentral() as well.


Signed-off-by: Veniamin Fernandes <[email protected]>
  • Loading branch information
venfernand committed Jan 22, 2023
1 parent effbb60 commit b65167e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'maven-publish'
repositories {
flatDir { dirs uri("${projectDir}/lib") }
maven { url 'https://mvn.freenetproject.org' }
jcenter()
mavenCentral()
}

sourceSets {
Expand Down

0 comments on commit b65167e

Please sign in to comment.