-
Notifications
You must be signed in to change notification settings - Fork 23
/
build.gradle
67 lines (58 loc) · 1.9 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.time.Duration
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath('com.android.tools.build:gradle:7.1.1')
// For displaying method/field counts when building with Gradle:
// https://github.com/KeepSafe/dexcount-gradle-plugin
classpath("com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.1.0")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id("java")
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
}
// Must be specified in root project for the gradle nexus publish plugin.
group = "com.launchdarkly"
// Specified in the root project so Releaser's `publish-dry-run.sh` can see it in `./gradlew properties`
archivesBaseName = 'launchdarkly-android-client-sdk'
// Specified in gradle.properties
version = version
allprojects {
repositories {
mavenLocal()
// Before LaunchDarkly release artifacts get synced to Maven Central they are here along with snapshots:
maven { url = uri("https://oss.sonatype.org/content/groups/public/") }
google()
mavenCentral()
}
}
subprojects {
afterEvaluate {
configure(android.lintOptions) {
abortOnError = false
}
configure(android.compileOptions) {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
// enable deprecation checks
options.compilerArgs << "-Xlint:deprecation"
}
}
}
}
nexusPublishing {
packageGroup = "com.launchdarkly"
repositories {
sonatype()
}
}