-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathsettings.gradle
More file actions
97 lines (85 loc) · 2.4 KB
/
Copy pathsettings.gradle
File metadata and controls
97 lines (85 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
* Copyright (C) 2007-2026 Crafter Software Corporation. All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
plugins {
id 'org.cyclonedx.bom' version '3.4.0'
}
}
plugins {
id 'com.github.node-gradle.node' version '7.1.0' apply false
id 'org.cyclonedx.bom' apply false
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
mavenLocal()
mavenCentral()
maven {
url = uri('https://repo.jenkins-ci.org/public/')
}
ivy {
name = 'Node.js'
url = uri('https://nodejs.org/dist/')
patternLayout {
artifact 'v[revision]/[artifact]-v[revision]-[classifier].[ext]'
}
metadataSources {
artifact()
}
content {
includeModule('org.nodejs', 'node')
}
}
}
}
rootProject.name = 'craftercms'
include 'groovy-sandbox'
include 'script-security-plugin'
include 'core'
include 'commons:audit'
include 'commons:entitlements'
include 'commons:git'
include 'commons:mongo'
include 'commons:plugin'
include 'commons:security'
include 'commons:upgrade-manager'
include 'commons:utilities'
include 'commons:validation'
include 'search:commons'
include 'search:batch-indexer'
include 'search:opensearch'
include 'profile:api'
include 'profile:client'
include 'profile:security-provider'
include 'profile:server'
include 'profile:admin-console'
// TODO: fix or remove this
// include 'profile:integration-tests'
include 'engine'
include 'social:virus-scanner'
include 'social:server'
include 'social:admin'
include 'studio-ui'
include 'studio'
include 'deployer'
include 'cli'
project(':search:commons').projectDir = file('search/crafter-search-commons')
project(':search:batch-indexer').projectDir = file('search/crafter-search-batch-indexer')
project(':search:opensearch').projectDir = file('search/crafter-search-opensearch')