-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuild.gradle
More file actions
87 lines (76 loc) · 1.78 KB
/
Copy pathbuild.gradle
File metadata and controls
87 lines (76 loc) · 1.78 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
plugins {
id 'maven-publish'
id 'com.enonic.defaults' version '2.1.7'
id 'com.enonic.xp.app'
id 'com.github.node-gradle.node' version '7.1.0'
}
dependencies {
include xplibs.admin
include xplibs.content
include xplibs.context
include xplibs.node
include xplibs.portal
include libs.lib.thymeleaf
}
repositories {
mavenLocal()
mavenCentral()
xp.enonicRepo( "dev" )
}
node {
// Whether to download and install a specific Node.js version or not
// If false, it will use the globally installed Node.js
// If true, it will download node using above parameters
// Note that npm is bundled with Node.js
download = true
// Version of node to download and install (only used if download is true)
// It will be unpacked in the workDir
version = '24.15.0'
}
processResources {
exclude '**/*.js'
exclude '**/*.ts'
}
tasks.withType(Copy).configureEach {
includeEmptyDirs = false
}
tasks.register('npmBuild', NpmTask) {
args = [
'run',
'build'
]
dependsOn npmInstall
environment = [
'FORCE_COLOR': 'true',
'LOG_LEVEL_FROM_GRADLE': gradle.startParameter.logLevel.toString(),
'NODE_ENV': project.hasProperty('dev') || project.hasProperty('development') ? 'development' : 'production'
]
inputs.dir 'src/main/resources'
outputs.dir 'build/resources/main'
}
jar.dependsOn npmBuild
tasks.register('npmCheck', NpmTask) {
dependsOn npmInstall
args = [
'run',
'check'
]
environment = [
'FORCE_COLOR': 'true',
]
}
tasks.register('npmTest', NpmTask) {
args = [
'run',
'test'
]
dependsOn npmInstall
environment = [
'FORCE_COLOR': 'true',
]
}
// If you ALWAYS want to SKIP `test` and `check` tasks on development build, wrap this inside an 'if...'
// if (!(project.hasProperty('dev') || project.hasProperty('development'))) {
check.dependsOn npmCheck
test.dependsOn npmTest
// }