-
Notifications
You must be signed in to change notification settings - Fork 63
/
build.gradle
48 lines (45 loc) · 1.19 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
buildscript {
ext.kotlin_version = '1.8.0'
repositories {
google()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.8.10"
classpath "gradle.plugin.org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.12.2"
}
}
plugins {
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
}
subprojects {
group = 'com.snowplowanalytics'
version = '6.0.6'
repositories {
google()
maven {
url "http://maven.snplow.com/releases"
allowInsecureProtocol = true
}
mavenCentral()
}
}
nexusPublishing {
repositories {
sonatype {
username = System.getenv('SONA_USER')
password = System.getenv('SONA_PASS')
packageGroup = GROUP
}
}
transitionCheckOptions {
maxRetries.set(360)
delayBetween.set(Duration.ofSeconds(20))
}
}