-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsettings.gradle
More file actions
73 lines (64 loc) · 2.17 KB
/
settings.gradle
File metadata and controls
73 lines (64 loc) · 2.17 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
mavenLocal()
maven {
name = "inductiveautomation-releases"
url = uri(
"https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/"
)
}
maven {
url "https://nexus.inductiveautomation.com/repository/inductiveautomation-beta"
}
maven {
url = "https://nexus.inductiveautomation.com/repository/public"
}
}
}
rootProject.name = "IgnitionNodeRED"
dependencyResolutionManagement {
repositories {
// enable resolving dependencies from the inductive automation artifact repository
maven {
name = "inductiveautomation-releases"
url = uri(
"https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/"
)
}
// enable resolving dependencies from the inductive automation artifact repository
maven {
url "https://nexus.inductiveautomation.com/repository/inductiveautomation-beta"
}
maven {
url "https://nexus.inductiveautomation.com/repository/public"
}
maven {
url "https://repository.mulesoft.org/nexus/content/repositories/public/"
}
mavenCentral()
// Declare the Node.js download repository. We do this here so that we can continue to have repositoryMode set
// to 'PREFER SETTINGS', as the node plugin will respect that and not set the node repo, meaning we can't
// resolve the node runtime we need for building the web packages.
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")
}
}
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
":",
":IgnitionNodeRED-gateway",
":IgnitionNodeRED-web"
)