Skip to content

Commit 9818829

Browse files
committed
chore(maven): add settings for maven central
1 parent 49d6594 commit 9818829

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Goal is to have something as similar to GPUImage as possible. Vertex and fragmen
1616

1717
```groovy
1818
repositories {
19-
jcenter()
19+
mavenCentral()
2020
}
2121
2222
dependencies {

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:4.1.0-rc02'
11-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
12-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
10+
classpath 'com.android.tools.build:gradle:4.2.0-beta04'
1311
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
12+
13+
// TODO: Close JCenter on May 1st https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
14+
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
15+
// classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1416
}
1517
}
1618

1719
allprojects {
1820
repositories {
1921
google()
22+
mavenCentral()
2023
jcenter()
2124
}
2225
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
3+
distributionUrl=https://services.gradle.org/distributions/gradle-6.7.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
5-
zipStorePath=wrapper/dists
5+
zipStorePath=wrapper/dists

library/build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,8 @@ ext {
4949
allLicenses = ["Apache-2.0"]
5050
}
5151

52-
apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/bintray-v1.gradle'
53-
apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/install-v1.gradle'
52+
// TODO: Close JCenter on May 1st https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
53+
// apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/bintray-v1.gradle'
54+
// apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/install-v1.gradle'
55+
56+
apply from: 'https://gist.githubusercontent.com/wasabeef/2f2ae8d97b429e7d967128125dc47854/raw/maven-central-v1.gradle'

sample/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ android {
2727
}
2828
}
2929
repositories {
30-
google()
31-
jcenter()
32-
// maven { url "https://dl.bintray.com/cats-oss/maven" }
30+
// maven { url = "https://oss.sonatype.org/content/repositories/snapshots"}
3331
}
3432

3533
dependencies {

0 commit comments

Comments
 (0)