-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (28 loc) · 830 Bytes
/
build.gradle
File metadata and controls
33 lines (28 loc) · 830 Bytes
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
buildscript {
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
classpath 'gradle.plugin.com.github.johnrengelman:shadow:7.1.2'
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.21.2"
}
}
apply from: file('secrets.gradle')
apply plugin: 'io.codearte.nexus-staging'
nexusStaging {
packageGroup = "systems.danger"
username = loadSecret("SONATYPE_USER")
password = loadSecret("SONATYPE_PASS")
delayBetweenRetriesInMillis = 5000
}
allprojects {
repositories {
mavenCentral()
maven {
url = "https://kotlin.bintray.com/kotlinx/"
}
}
}