-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
149 lines (126 loc) · 4.14 KB
/
build.gradle
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
plugins {
id 'java'
id 'maven-publish'
id 'com.enonic.defaults' version '2.1.5'
id 'com.enonic.xp.app' version '3.4.0'
id "com.github.node-gradle.node" version '7.0.2'
}
app {
name = project.appName
displayName = 'Model Studio'
vendorName = 'Enonic AS'
vendorUrl = 'https://enonic.com'
systemVersion = "${xpVersion}"
devSourcePaths += file("$rootDir/../lib-admin-ui/src/main/resources")
}
configurations {
devResources {
attributes {
attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements, 'dev-resources'))
}
}
}
dependencies {
implementation "com.enonic.xp:jaxrs-api:${xpVersion}"
implementation "com.enonic.xp:core-api:${xpVersion}"
implementation "com.enonic.xp:portal-api:${xpVersion}"
implementation "com.enonic.xp:script-api:${xpVersion}"
include "com.enonic.xp:lib-admin:${xpVersion}"
include "com.enonic.xp:lib-portal:${xpVersion}"
include "com.enonic.xp:lib-schema:${xpVersion}"
include "com.enonic.xp:lib-app:${xpVersion}"
include "com.enonic.xp:lib-i18n:${xpVersion}"
include "com.enonic.lib:lib-admin-ui:${libAdminUiVersion}"
devResources "com.enonic.lib:lib-admin-ui:${libAdminUiVersion}"
include "com.enonic.lib:lib-graphql:2.1.0"
include "com.enonic.lib:lib-mustache:2.1.1"
testImplementation "com.enonic.xp:testing:${xpVersion}"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter:5.9.1'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testImplementation( testFixtures( "com.enonic.xp:jaxrs-impl:${xpVersion}" ) )
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
repositories {
mavenLocal()
mavenCentral()
xp.enonicRepo('dev')
}
node {
download = true
version = '20.13.1'
}
task copyDevResources {
doLast {
copy {
from configurations.devResources.files.collect { zipTree( it ) }
include 'dev/**'
into '.xp'
}
}
}
npmInstall.dependsOn copyDevResources
task flush( type: Delete, dependsOn: clean ) {
description = 'Clean the project from built sources and dependencies'
delete '.xp'
}
task npmInstallForce( type: NpmTask ) {
description = 'Update all project node dependencies'
args = ['install', '--force']
}
task cleanNode( type: Delete ) {
delete 'node_modules'
}
task lint( type: NpmTask, dependsOn: npmInstall ) {
args = [ 'run', 'lint:quiet' ]
inputs.files fileTree( dir: 'modules', include: '**/src/main/**.*' )
outputs.dir file('gradle')
outputs.upToDateWhen { false }
}
task webpack( type: NpmTask, dependsOn: [npmInstall, lint] ) {
environment = [ 'NODE_ENV': nodeEnvironment() ]
description = 'Build UI resources (ts, css, etc).'
args = [ 'run', 'build' ]
inputs.dir '.xp/dev'
inputs.dir 'src/main'
inputs.file 'webpack.config.js'
outputs.dir "${buildDir}/resources/main"
}
jar {
exclude 'assets/**/*.ts'
exclude 'assets/**/*.less'
exclude 'assets/styles/*.js'
outputs.dir "${buildDir}/resources/main"
dependsOn webpack
}
test {
useJUnitPlatform()
systemProperty 'java.awt.headless', 'true'
jvmArgs '-noverify', '-XX:TieredStopAtLevel=1'
}
if ( hasProperty( 'env' ) )
{
addBuildDependency()
}
def addBuildDependency() {
if ( isLibAdminUiIncluded() )
{
def libAdminBuildTask = gradle.includedBuild( 'lib-admin-ui' ).task( ':build' )
copyDevResources.dependsOn += libAdminBuildTask
build.dependsOn += libAdminBuildTask
clean.dependsOn += gradle.includedBuild( 'lib-admin-ui' ).task( ':clean' )
flush.dependsOn += gradle.includedBuild( 'lib-admin-ui' ).task( ':flush' )
}
}
def isLibAdminUiIncluded() {
return new File( '../lib-admin-ui' ).exists()
}
def nodeEnvironment() {
def environments = [ prod : 'production', dev: 'development' ]
def nodeEnv = environments[hasProperty( 'env' ) ? env : 'prod']
return nodeEnv != null ? nodeEnv : 'production'
}