forked from inductiveautomation/ignition-sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
53 lines (46 loc) · 1.89 KB
/
settings.gradle.kts
File metadata and controls
53 lines (46 loc) · 1.89 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
mavenLocal()
// add the IA repo to pull in the module-signer artifact. Can be removed if the module-signer is maven
// published locally from its source-code and loaded via mavenLocal.
maven {
url = uri("https://nexus.inductiveautomation.com/repository/public/")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
mavenLocal()
maven {
url = uri("https://nexus.inductiveautomation.com/repository/public/")
}
maven {
url = uri("https://nexus.inductiveautomation.com/repository/inductiveautomation-beta/")
}
// 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")
// this file configures settings for the gradle build tools, as well as the project structure.
// Generally this doesn't need to be altered unless you are adding/removing sub-projects.
rootProject.name = "perspective-component"
// link up our subprojects as part of this multi-project build. Add/remove subprojects gradle path notation.
include(":common", ":gateway", ":designer", ":web")