-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
32 lines (28 loc) · 929 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
ext.kotlinVersion = '1.1.51'
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'digital.wup:android-maven-publish:3.6.2'
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
classpath 'org.jsonschema2pojo:jsonschema2pojo-gradle-plugin:1.0.2'
classpath 'com.google.gms:google-services:4.3.10'
classpath "com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta10"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21"
}
}
plugins {
id 'io.codearte.nexus-staging' version '0.11.0'
id 'com.bmuschko.nexus' version '2.3.1'
}
allprojects {
repositories {
jcenter()
google()
maven { url 'https://jitpack.io' }
}
}