aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 0fdc1fd8c23a712d4a906faffa0aa131b33e43db (plain)
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
33
34
35
36
37
38
39
40
41
42
System.setProperty("file.encoding", "UTF-8")

buildscript {
    repositories {
        google()
        mavenLocal()
        jcenter()
        maven { url 'https://repo1.maven.org/maven2' /*maven-central with HTTPS*/}
        maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
        maven { url 'https://jitpack.io' }
        maven { url "https://plugins.gradle.org/m2/" }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
        classpath 'com.github.triplet.gradle:play-publisher:2.4.2'
        classpath 'net.ltgt.gradle:gradle-errorprone-plugin:1.1.1'
        classpath 'gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.8'
        classpath 'net.evendanan.autoversion:gradle-plugin:0.2.2'
    }
}

apply plugin: 'com.github.sherter.google-java-format'

googleJavaFormat {
    toolVersion = '1.7'
    options style: 'AOSP'
}

allprojects {
    repositories {
        google()
        mavenLocal()
        maven { url 'https://repo1.maven.org/maven2' /*maven-central with HTTPS*/}
        jcenter()
        maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
        maven { url "https://jitpack.io" }
    }
}

apply from: "${rootDir}/gradle/emoji_generator.gradle"
apply from: "${rootDir}/gradle/root_all_projects_ext.gradle"
apply from: "${rootDir}/gradle/fdroid_yaml_output.gradle"