1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

removed jcenter

This commit is contained in:
E. Kozlov 2021-05-27 22:32:25 +03:00
parent 07f139c770
commit 20d10cee4e

View file

@ -5,7 +5,7 @@ buildscript {
ext.gradle_tools = '3.1.3'
ext.build_tools = '29.0.0'
ext.nav_version = '2.3.0'
ext.dokka_version = '1.4.0-rc'
ext.dokka_version = '1.4.32'
ext.compile_sdk = 29
ext.target_sdk = 29
@ -18,11 +18,7 @@ buildscript {
repositories {
google()
jcenter()
maven {
url 'https://dl.bintray.com/blipinsk/maven/'
}
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
@ -46,7 +42,7 @@ githubProperties.load(new FileInputStream(rootProject.file('github.properties'))
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven {
name = "GitHubPackages"
@ -59,20 +55,6 @@ allprojects {
}
}
subprojects {
repositories {
maven {
url "${rootProject.projectDir}/libs"
metadataSources {
artifact()
}
content {
includeModule("io.anytype", "middleware-library")
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}