-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
pom.xml
374 lines (311 loc) · 11.9 KB
/
pom.xml
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<!--**************************************************************************
* POM SECTION: Maven Model Version Settings
***************************************************************************-->
<modelVersion>4.0.0</modelVersion>
<!--**************************************************************************
* POM SECTION: Maven Settings
***************************************************************************-->
<groupId>com.sap.openui5</groupId>
<artifactId>reactor</artifactId>
<version>1.131.0-SNAPSHOT</version><!--MainVersion-->
<packaging>pom</packaging>
<!--**************************************************************************
* POM SECTION: Project Settings
***************************************************************************-->
<name>OpenUI5</name>
<description>OpenUI5 - Reactor POM</description>
<!--**************************************************************************
* POM SECTION: Modules Settings
***************************************************************************-->
<modules>
<!-- UI libraries -->
<module>src/sap.ui.core</module>
<module>src/sap.ui.unified</module>
<module>src/sap.ui.layout</module>
<module>src/sap.m</module>
<module>src/sap.f</module>
<module>src/sap.ui.commons</module>
<module>src/sap.ui.table</module>
<module>src/sap.ui.ux3</module>
<module>src/sap.ui.suite</module>
<module>src/sap.ui.documentation</module>
<module>src/sap.ui.dt</module>
<module>src/sap.tnt</module>
<module>src/sap.uxap</module>
<module>src/sap.ui.fl</module>
<module>src/sap.ui.mdc</module>
<module>src/sap.ui.rta</module>
<module>src/sap.ui.codeeditor</module>
<module>src/sap.ui.support</module>
<module>src/sap.ui.integration</module>
<module>src/sap.ui.testrecorder</module>
<module>src/sap.ui.webc.main</module>
<module>src/sap.ui.webc.common</module>
<module>src/sap.ui.webc.fiori</module>
<!-- theme libraries -->
<module>src/themelib_sap_bluecrystal</module>
<module>src/themelib_sap_belize</module>
<module>src/themelib_sap_fiori_3</module>
<module>src/themelib_sap_horizon</module>
<!-- JSDoc template -->
<module>lib/jsdoc</module>
</modules>
<!--**************************************************************************
* POM SECTION: Properties Settings
***************************************************************************-->
<properties>
<!-- default encoding is UTF-8 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- default compiler level is 1.8 -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- define build timestamp format -->
<maven.build.timestamp.format>yyyyMMdd-HHmm</maven.build.timestamp.format>
<!-- filtering properties -->
<version>${project.version}</version>
<copyright><![CDATA[OpenUI5
* (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
]]></copyright>
<buildtime>${maven.build.timestamp}</buildtime>
<lastchange></lastchange><!-- TODO: fill via build parameter -->
<!-- JSLint/ESLint report path -->
<sonar.javascript.jslint.reportPath>target/jslint/jslint.xml</sonar.javascript.jslint.reportPath>
<!-- Maven build phase in which npm-sources should be packaged -->
<!-- Set to 'package' to enable packaging for a project in general -->
<npm.package.phase>never</npm.package.phase>
<!-- internal properties, do not modify -->
<effective.npm.package.phase>${npm.package.phase}</effective.npm.package.phase>
<!-- Node.js settings -->
<node.version>20.11.0</node.version>
<node.gav>gav:org.nodejs.download.node:node</node.gav>
<node.location>${node.gav}</node.location>
<node.forceNoProxy>true</node.forceNoProxy>
<!-- NPM settings -->
<npm.version>10.2.4</npm.version>
<npm.registry>${xmake.import.NPM.0}</npm.registry>
<!-- skip eslint validation -->
<sap.ui5.eslint.skip.validation>true</sap.ui5.eslint.skip.validation>
<!-- fail on eslint error -->
<sap.ui5.eslint.failonerror>true</sap.ui5.eslint.failonerror>
<!-- only validate the changed files -->
<sap.ui5.eslint.onlyChangedFiles>true</sap.ui5.eslint.onlyChangedFiles>
<!-- send eslint result as Gerrit inline comment -->
<sap.ui5.eslint.sendGerritComment>true</sap.ui5.eslint.sendGerritComment>
<!-- quite or verbose execution -->
<sap.ui5.eslint.quite>true</sap.ui5.eslint.quite>
<!-- Eslint tools version -->
<sap.ui5.eslint.tools.version>0.1.1</sap.ui5.eslint.tools.version>
<!-- ESLint version (for all OpenUI5 projects, to be aligned with package.json) -->
<sap.openui5.eslintnode.version>8.56.0</sap.openui5.eslintnode.version>
</properties>
<!--**************************************************************************
* POM SECTION: Build Settings
***************************************************************************-->
<build>
<plugins>
<!-- specify the delimiters for the filtering -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration>
<!-- list of used binary types (must not be filtered) -->
<nonFilteredFileExtensions>
<extension>ttf</extension>
<extension>eot</extension>
<extension>gif</extension>
<extension>png</extension>
<extension>ico</extension>
<extension>swf</extension>
<extension>wav</extension>
<extension>properties</extension><!-- excluded as those files don't use UTF-8 encoding and as no filtering is needed -->
<extension>woff</extension>
<extension>woff2</extension>
<extension>hpb</extension><!-- hyphenation pattern binary (introduced by OSS component 'hyphenopoly') -->
<extension>wasm</extension><!-- web assembly, compiled binary -->
</nonFilteredFileExtensions>
<!--
With the default delimiter settings, filtering fails for lines with an odd number of delimiter chars
like in
@version @version@
We therefore disable the defaults and use only ${*}.
-->
<useDefaultDelimiters>false</useDefaultDelimiters>
<delimiters>
<delimiter>${*}</delimiter>
</delimiters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<executions>
<execution>
<id>npm-resources</id>
<goals>
<goal>jar</goal>
</goals>
<!-- we use the 'phase' as a substitute for the missing 'skip' property of the jar-plugin -->
<!-- for non-library projects and for all builds other than the nightly build, it is set to 'never' -->
<phase>${effective.npm.package.phase}</phase>
<configuration>
<classesDirectory>${project.basedir}</classesDirectory>
<classifier>npm-resources</classifier>
<includes>
<include>package.json</include>
<include>ui5.yaml</include>
<include>.dtsgenrc</include>
<include>.npmignore</include>
<include>src/**/*</include>
<include>test/**/*</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!--**************************************************************************
* POM SECTION: Profile Settings
***************************************************************************-->
<profiles>
<!-- attach the LICENSE.txt and THIRDPARTY.txt files -->
<profile>
<activation>
<file>
<exists>${basedir}/LICENSE.txt</exists>
</file>
</activation>
<build>
<plugins>
<!-- attach the LICENSE.txt and THIRDPARTY.txt as separate artifacts -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${basedir}/LICENSE.txt</file>
<type>txt</type>
<classifier>LICENSE</classifier>
</artifact>
<artifact>
<file>${basedir}/THIRDPARTY.txt</file>
<type>txt</type>
<classifier>THIRDPARTY</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>eslintnode.build</id>
<build>
<plugins>
<plugin>
<groupId>com.sap.ui5.tools.maven</groupId>
<artifactId>eslintnode-maven-plugin</artifactId>
<version>0.2.4</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>eslint</goal>
</goals>
</execution>
</executions>
<configuration>
<version>${sap.openui5.eslintnode.version}</version>
<nodeType>SHARED</nodeType>
<nodeVersion>${node.version}</nodeVersion>
<nodeLocation>${node.location}</nodeLocation>
<npmRegistry>${npm.registry}</npmRegistry>
<npmVersion>${npm.version}</npmVersion>
<formatters>
<formatter>
<name>sonar</name>
<output>${project.build.directory}/jslint/jslint.xml</output>
</formatter>
</formatters>
<failOnError>${sap.ui5.eslint.failonerror}</failOnError>
<onlyChangedFiles>${sap.ui5.eslint.onlyChangedFiles}</onlyChangedFiles>
<sendGerritComment>${sap.ui5.eslint.sendGerritComment}</sendGerritComment>
<eslintToolsVersion>${sap.ui5.eslint.tools.version}</eslintToolsVersion>
<quiet>${sap.ui5.eslint.quite}</quiet>
<skip>${sap.ui5.eslint.skip.validation}</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>nightly.build</id>
<activation>
<property>
<name>ldi.releaseBuild</name>
</property>
</activation>
<properties>
<!-- validate all files for the nightly build (attention: profile nightly.build must stay after eslint.build!) -->
<sap.ui5.eslint.onlyChangedFiles>false</sap.ui5.eslint.onlyChangedFiles>
<!-- don't send Gerrit comment in nightly build -->
<sap.ui5.eslint.sendGerritComment>false</sap.ui5.eslint.sendGerritComment>
</properties>
</profile>
<!-- Newer JDKs 9 and higher require at least Maven 3.6.x due to JAXB issues to load package-info.java -->
<!-- Details: https://stackoverflow.com/questions/52157040/jaxb-package-info-ignored-when-using-java-10 -->
<profile>
<id>jdk9plus.build</id>
<activation>
<jdk>(1.8,)</jdk>
</activation>
<properties>
<!-- To ensure compatibility with a JDK8 built- or runtime, the target "release" must be set to 8 -->
<!-- Details: https://www.morling.dev/blog/bytebuffer-and-the-dreaded-nosuchmethoderror/ -->
<!-- and: https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-release.html -->
<maven.compiler.release>8</maven.compiler.release>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.6.0,)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>