-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle
43 lines (34 loc) · 1007 Bytes
/
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
import com.liferay.gradle.plugins.service.builder.ServiceBuilderPlugin
import com.liferay.gradle.plugins.wsdd.builder.WSDDBuilderPlugin
import com.liferay.gradle.plugins.wsdl.builder.WSDLBuilderPlugin
gradle.allprojects {
buildscript {
repositories {
mavenLocal()
}
}
repositories {
mavenLocal()
}
}
buildscript {
dependencies {
classpath group: "com.liferay", name: "com.liferay.gradle.plugins.workspace", version: "1.10.1"
classpath group: "net.saliman", name: "gradle-properties-plugin", version: "1.4.6"
}
repositories {
mavenLocal()
maven {
url "https://cdn.lfrs.sl/repository.liferay.com/nexus/content/groups/public"
}
}
}
gradle.beforeProject {
project ->
project.plugins.withType(ServiceBuilderPlugin) {
project.apply plugin: WSDDBuilderPlugin
project.apply plugin: WSDLBuilderPlugin
}
}
apply plugin: "net.saliman.properties"
apply plugin: "com.liferay.workspace"