We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4aac36 commit bff0221Copy full SHA for bff0221
build.gradle
@@ -21,12 +21,19 @@ buildscript {
21
22
repositories {
23
mavenLocal()
24
- maven {
25
- url 'http://repository.haulmont.com:8587/nexus/content/groups/work'
26
- credentials {
27
- username System.getenv('HAULMONT_REPOSITORY_USER')
28
- password System.getenv('HAULMONT_REPOSITORY_PASSWORD')
+
+ if (System.getenv('HAULMONT_REPOSITORY_URL')) {
+ maven {
+ credentials {
+ username System.getenv('HAULMONT_REPOSITORY_USER')
29
+ password System.getenv('HAULMONT_REPOSITORY_PASSWORD')
30
+ }
31
+ url System.getenv('HAULMONT_REPOSITORY_URL')
32
}
33
+ } else {
34
+ jcenter()
35
+ maven { url "https://plugins.gradle.org/m2/" }
36
+ maven { url "https://dl.bintray.com/cuba-platform/main" }
37
38
39
dependencies {
0 commit comments