forked from inductiveautomation/ignition-sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
56 lines (49 loc) · 1.54 KB
/
settings.gradle
File metadata and controls
56 lines (49 loc) · 1.54 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
mavenLocal()
maven {
url "https://nexus.inductiveautomation.com/repository/inductiveautomation-beta"
}
maven {
url = "https://nexus.inductiveautomation.com/repository/public"
}
}
}
rootProject.name = "webui-webpage"
dependencyResolutionManagement {
repositories {
// 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"
}
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(
":",
":common",
":gateway",
":web-ui"
)