-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
67 lines (57 loc) · 2.13 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import java.util.stream.Stream
import java.nio.file.Files
System.setProperty("file.encoding", "UTF-8")
def logFile = rootProject.file("build-logging/build-log-${System.currentTimeMillis()}.log")
gradle.addBuildListener(new BuildLogger(logFile))
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.6.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"
tasks.register("clean", Delete) {
delete buildDir
//we do not want to delete the current log file
logFile.parentFile.listFiles().each {
if (it != null && it.absolutePath != logFile.absolutePath) {
delete it
}
}
//deleting all beta/production change-logs
Stream<Path> files = Files.walk(rootDir.toPath())
files.sorted(Comparator.reverseOrder())
.map { it.toFile() }
.filter { it.name == 'beta.txt' || it.name == 'production.txt' }
.forEach { it.deleteOnExit() }
files.close()
}