-
Notifications
You must be signed in to change notification settings - Fork 108
/
settings.gradle
50 lines (47 loc) · 1.02 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
pluginManagement {
repositories {
mavenCentral() {
content {
excludeGroup 'com.axelor'
}
}
maven {
url 'https://repository.axelor.com/nexus/repository/maven-public/'
}
}
plugins {
id 'com.axelor.app' version '7.2.+'
}
}
dependencyResolutionManagement {
repositories {
mavenCentral() {
content {
excludeGroup 'com.axelor'
}
}
maven {
url 'https://repository.axelor.com/nexus/repository/maven-public/'
}
// Declare the Node.js download repository
ivy {
name = "Node.js"
setUrl("https://nodejs.org/dist/")
patternLayout {
artifact("v[revision]/[artifact](-v[revision]-[classifier]).[ext]")
}
metadataSources {
artifact()
}
content {
includeModule("org.nodejs", "node")
}
}
}
}
rootProject.name = 'open-platform-demo'
include 'modules:demo-contact'
include 'modules:demo-sale'
include 'modules:demo-project'
include 'modules:demo-custom'
include 'modules:demo-data'