-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
26 lines (24 loc) · 978 Bytes
/
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
allprojects {
repositories {
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url "https://repo.glaremasters.me/repository/concuncan/" }
maven {
url 'https://repo.c7x.ru/repository/maven-public/'
credentials {
username = System.getenv("CRI_REPO_LOGIN") ?: project.properties["CRI_REPO_LOGIN"] as String
password = System.getenv("CRI_REPO_PASSWORD") ?: project.properties["CRI_REPO_PASSWORD"] as String
}
}
maven {
url 'https://repo.c7x.ru/repository/private-anelfer/'
credentials {
username = System.getenv("CRI_REPO_LOGIN") ?: project.properties["CRI_REPO_LOGIN"] as String
password = System.getenv("CRI_REPO_PASSWORD") ?: project.properties["CRI_REPO_PASSWORD"] as String
}
}
}
}
subprojects {
apply plugin: 'java'
}