forked from dnebing/filesystem-access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
52 lines (40 loc) · 1.27 KB
/
settings.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
gradle.allprojects {
buildscript {
repositories {
mavenLocal()
maven {
url "https://cdn.lfrs.sl/repository.liferay.com/nexus/content/groups/public/"
}
maven {
url "https://cdn.lfrs.sl/repository.liferay.com/nexus/content/repositories/liferay-public-releases/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-extra-configurations-plugin:3.1.0"
}
}
repositories {
mavenLocal()
maven {
url "https://cdn.lfrs.sl/repository.liferay.com/nexus/content/groups/public/"
}
maven {
url "https://cdn.lfrs.sl/repository.liferay.com/nexus/content/repositories/liferay-public-releases/"
}
}
}
buildscript {
dependencies {
classpath group: "com.liferay", name: "com.liferay.gradle.plugins.workspace", version: "1.0.40"
}
repositories {
mavenLocal()
maven {
url "https://cdn.lfrs.sl/repository.liferay.com/nexus/content/groups/public/"
}
maven {
url "https://cdn.lfrs.sl/repository.liferay.com/nexus/content/repositories/liferay-public-releases/"
}
}
}
apply plugin: "com.liferay.workspace"