-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpom.xml
More file actions
687 lines (676 loc) · 32.6 KB
/
pom.xml
File metadata and controls
687 lines (676 loc) · 32.6 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
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>de.conterra.mapapps</groupId>
<artifactId>mapapps-4-developers</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencyManagement>
<dependencies>
<!-- dependency versions available -->
<dependency>
<groupId>de.conterra.mapapps</groupId>
<artifactId>ct-mapapps-js-bom</artifactId>
<version>${apprt.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- include only if old intern test libs are required -->
<dependency>
<groupId>de.conterra.mapapps</groupId>
<artifactId>ct-mapapps-js-bom-dev-test</artifactId>
<version>${apprt.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>de.conterra.mapapps</groupId>
<artifactId>mapapps-maven-plugin</artifactId>
<version>${mapapps.version}</version>
</plugin>
<plugin>
<groupId>de.conterra.jsregistry</groupId>
<artifactId>ct-jsregistry-maven-plugin</artifactId>
<version>${ct.jsregistry.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<escapeString>\</escapeString>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<classesDirectory>${js.build.outputPath}</classesDirectory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>apps/**</exclude>
<exclude>**/tests/**</exclude>
<exclude>**/sample_tests/**</exclude>
<exclude>**/theme-common/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
</plugin>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.15.4</version>
<configuration>
<nodeVersion>v22.17.1</nodeVersion>
<!-- Keep this in sync with the package manager version in package.json -->
<pnpmVersion>10.18.3</pnpmVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.1.0</version>
</plugin>
</plugins>
</pluginManagement>
<sourceDirectory>src/main/js</sourceDirectory>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<includes>
<include>application.properties</include>
</includes>
<filtering>true</filtering>
</testResource>
<testResource>
<directory>src/test/resources</directory>
<excludes>
<exclude>application.properties</exclude>
</excludes>
</testResource>
<testResource>
<directory>src/test/webapp</directory>
<includes>
<include>**/*</include>
</includes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.9.0,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[17,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>de.conterra.maven</groupId>
<artifactId>setproperties-maven-plugin</artifactId>
<version>1.0.5</version>
<executions>
<execution>
<goals>
<goal>setProperties</goal>
</goals>
</execution>
</executions>
<configuration>
<properties>
<mapapps.remote.base>.</mapapps.remote.base>
</properties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>unpack-themes-src</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<stripVersion>true</stripVersion>
<artifactItems>
<artifactItem>
<groupId>de.conterra.mapapps</groupId>
<artifactId>ct-mapapps-js</artifactId>
<classifier>src</classifier>
<outputDirectory>${project.build.directory}/unpacked</outputDirectory>
<includes>layout/theme-everlasting/**,layout/theme-common/**</includes>
<excludes>layout/theme-everlasting/styles/vuetify/**</excludes>
</artifactItem>
<artifactItem>
<!-- unpack stylus files provided by beautify to map.apps themes -->
<groupId>org.vuetifyjs</groupId>
<artifactId>vuetify</artifactId>
<classifier>dev</classifier>
<outputDirectory>${project.build.directory}/unpacked/layout</outputDirectory>
<includes>vuetify/stylus/**</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>copy js-libs into 'bundle-imports'</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/bundle-imports</outputDirectory>
<includeTypes>jar</includeTypes>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<!-- ensure test resources are copied together with normal resources -->
<goals>
<goal>testResources</goal>
</goals>
<phase>process-resources</phase>
</execution>
</executions>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<?m2e ignore?> <!-- Skip this execution on Java Autobuild -->
<id>run gulp ${gulp.task}</id>
<goals>
<goal>gulp</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<arguments>${gulp.task}</arguments>
<environmentVariables>
<NODE_ENV>${gulp.node.env}</NODE_ENV>
</environmentVariables>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<executions>
<execution>
<id>replace some config settings in app.json</id>
<phase>prepare-package</phase>
<goals>
<goal>replace</goal>
</goals>
<configuration>
<basedir>${js.build.outputPath}</basedir>
<includes>
<include>**/app.json</include>
</includes>
<regex>true</regex>
<replacements>
<replacement>
<!-- remove bundleLocations from app.json -->
<token>\s*"bundleLocations"\s*:\s*\[\s*"localbundles"\s*,\s*"bundles"\s*\]\s*,\s*</token>
<value></value>
</replacement>
</replacements>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>de.conterra.jsregistry</groupId>
<artifactId>ct-jsregistry-maven-plugin</artifactId>
<executions>
<execution>
<id>build-jsregistry.properties</id>
<phase>process-resources</phase>
<goals>
<goal>buildPacksProperties</goal>
</goals>
<configuration>
<!-- don't list not shipped bundles in the
META-INF\js-registry-packs.properties file -->
<scanPackagesExcludes>apps/**,bundles/sample_tests</scanPackagesExcludes>
</configuration>
</execution>
</executions>
<configuration>
<sourceDirectory>${js.build.outputPath}</sourceDirectory>
<outputDirectory>${js.build.outputPath}</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>de.conterra.mapapps</groupId>
<artifactId>mapapps-maven-plugin</artifactId>
<configuration>
<!-- only build zip files -->
<skipDeploy>true</skipDeploy>
<sourceDirectory>${js.build.outputPath}/apps</sourceDirectory>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
<executions>
<execution>
<!-- used to create .zip files containing the apps during the build -->
<id>create-app-zips</id>
<goals>
<goal>deployApps</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<root.build.outputPath>${project.build.directory}/webapp</root.build.outputPath>
<js.build.outputPath>${root.build.outputPath}/js</js.build.outputPath>
<mapapps.version>4.20.3</mapapps.version>
<!-- JS lib versions -->
<apprt.version>${mapapps.version}</apprt.version>
<!-- java lib versions -->
<ct.jsregistry.version>2.1.10</ct.jsregistry.version>
<!-- the default app, replaced in the *.html files to switch app names-->
<default.app.name>Demo</default.app.name>
<!-- don't do this in production configuration! This allows to go any http traffic over the
/proxy endpoint -->
<proxy.allowedServerUrls>
*://*:*/**;
</proxy.allowedServerUrls>
<proxy.allowedSSLDNs>*</proxy.allowedSSLDNs>
<proxy.use.rules></proxy.use.rules>
<cors.request.trustedServers>$\{mapapps.remote.base\}</cors.request.trustedServers>
<mvn.cmd>mvn</mvn.cmd>
<gulp.task></gulp.task>
<gulp.node.env>development</gulp.node.env>
<!-- Set username for map.apps remote installation, use ${env.MAPAPPS_USER} to reference a environment variable -->
<mapapps.user>${env.MAPAPPS_USER}</mapapps.user>
<!-- Set password for map.apps remote installation, use ${env.MAPAPPS_USER_PASSWORD} to reference a environment variable -->
<mapapps.pw></mapapps.pw>
<!-- Set token for map.apps remote installation, use ${env.MAPAPPS_TOKEN} to reference a environment variable -->
<mapapps.token></mapapps.token>
<!-- set to false if map.apps is configured behind integrated windows authentication is
required -->
<mapapps.useChunkedRequestEncoding>true</mapapps.useChunkedRequestEncoding>
<!-- enable this if "upload" profile should only deploy bundles -->
<skip.apps.upload>false</skip.apps.upload>
<!-- enable this if "upload" profile should pre-optimize apps -->
<triggerPreOptimization>false</triggerPreOptimization>
</properties>
<profiles>
<profile>
<id>include-mapapps-deps</id>
<dependencies>
<dependency>
<groupId>de.conterra.mapapps</groupId>
<artifactId>ct-mapapps-js-bom-dev</artifactId>
<version>${apprt.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>node-install</id>
<activation>
<property>
<name>env</name>
<value>!dev</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>install node and pnpm</id>
<phase>initialize</phase>
<goals>
<!--
npm is still needed for publishing etc. (called by pnpm)
-->
<goal>install-node-and-npm</goal>
<goal>install-node-and-pnpm</goal>
</goals>
</execution>
<execution>
<id>pnpm install</id>
<phase>initialize</phase>
<goals>
<goal>pnpm</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>env-dev</id>
<!-- This is the development profile, per default it points to a build.properties
file in the user home, but this can be changed localy by specifiying the
property local.configfile with its own string.
-->
<activation>
<property>
<name>env</name>
<value>dev</value>
</property>
</activation>
<properties>
<local.configfile>${basedir}/build.properties</local.configfile>
<!-- -Denv=dev enables preview mode -->
<gulp.task>preview</gulp.task>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<quiet>true</quiet>
<files>
<file>${local.configfile}</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>run-js-tests</id>
<properties>
<gulp.task>test</gulp.task>
</properties>
</profile>
<profile>
<id>compress</id>
<properties>
<gulp.task>compress</gulp.task>
<gulp.node.env>production</gulp.node.env>
</properties>
<build>
<plugins>
<plugin>
<groupId>de.conterra.jsregistry</groupId>
<artifactId>ct-jsregistry-maven-plugin</artifactId>
<executions>
<!--
Not longer required, because the calculation of the dependencies is done via rollup build.
<execution>
<id>calculate js dependencies</id>
<goals>
<goal>calculateDependencies</goal>
</goals>
</execution>-->
<!--
The optimizeJS goal is usually no longer required because compression is done via terser (see
gulpfile.js 'compress' option).
Uncomment this block only if you're still using `dojo/text!` in your source code.
Reenabling the optimizeJS goal unfortunately removes all comments from your built JavaScript, which
would incidentally also break source maps.
<execution>
<id>optimize js</id>
<goals>
<goal>optimizeJS</goal>
</goals>
<configuration>
<compress>false</compress>
</configuration>
</execution> -->
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>upload</id>
<build>
<plugins>
<plugin>
<groupId>de.conterra.mapapps</groupId>
<artifactId>mapapps-maven-plugin</artifactId>
<configuration>
<skipDeploy>${skip.apps.upload}</skipDeploy>
<deployAsApp>true</deployAsApp>
<appEditorState>PUBLISHED</appEditorState>
<serverResourcesEndpoint>${mapapps.remote.base}/resources</serverResourcesEndpoint>
<username>${mapapps.user}</username>
<password>${mapapps.pw}</password>
<token>${mapapps.token}</token>
<useChunkedRequestEncoding>${mapapps.useChunkedRequestEncoding}</useChunkedRequestEncoding>
<triggerPreOptimization>${triggerPreOptimization}</triggerPreOptimization>
</configuration>
</plugin>
<plugin>
<groupId>de.conterra.jsregistry</groupId>
<artifactId>ct-jsregistry-maven-plugin</artifactId>
<executions>
<execution>
<id>deploy-bundles</id>
<goals>
<goal>deployJSPackage</goal>
</goals>
<configuration>
<registryEndpoint>${mapapps.remote.base}/resources/jsregistry</registryEndpoint>
<username>${mapapps.user}</username>
<password>${mapapps.pw}</password>
<token>${mapapps.token}</token>
<useChunkedRequestEncoding>${mapapps.useChunkedRequestEncoding}</useChunkedRequestEncoding>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Triggers a standalone export of the apps.
This profile should only be used together with the compressed profile.
Example:
mvn clean package -P compress,standalone
-->
<id>standalone</id>
<dependencies>
<!-- ensure the correct production dependencies are used during standalone export -->
<dependency>
<groupId>de.conterra.mapapps</groupId>
<artifactId>ct-mapapps-js-bom-prod</artifactId>
<version>${apprt.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>de.conterra.mapapps</groupId>
<artifactId>mapapps-maven-plugin</artifactId>
<version>${mapapps.version}</version>
<executions>
<execution>
<id>create-standalone-apps</id>
<goals>
<goal>standaloneApp</goal>
</goals>
<configuration>
<!-- Export target folder. All apps are exported into this folder. -->
<outputDirectory>${project.build.directory}/export</outputDirectory>
<!-- folder where the apps for export are located -->
<sourceDirectory>${project.build.directory}/webapp/js/apps</sourceDirectory>
<!-- (optional) regex which apps should be exported. By default all in the sourceDirectory. -->
<includePattern>.*</includePattern>
<!-- (optional) regex which apps should not be exported. By default empty. -->
<skipPattern></skipPattern>
<!-- (optional) folder to a local bundles directory, which is used as source of bundles. The bundles need to be compressed and have a dependencies.json. -->
<localBundlesDirectory>${project.build.directory}/webapp/js/bundles</localBundlesDirectory>
<!-- (optional) folder with custom index.html or config.js file of the exported app. -->
<standaloneTemplateOverride>${project.build.directory}/standalone-template</standaloneTemplateOverride>
<!-- (optional) read the application.properties as source for property replacement of the exported files -->
<applicationProperties>${project.build.directory}/test-classes/application.properties</applicationProperties>
<!-- (optional) define further replacement properties, this will overwrite settings from the application.properties -->
<replacementProperties>
<myproperty>xyz</myproperty>
</replacementProperties>
<!-- (optional) custom javascript modules included in the apps layer file
e.g. myBundle/someModule,myBundle/anotherModule
-->
<exportCustomModules>map-preload-2D</exportCustomModules>
<!-- (optional) custom files included in the export
e.g. myBundle/*.gif,myBundle/*.svg
-->
<exportCustomFiles></exportCustomFiles>
<!-- If true .js, .json and .css files are pre-compressed,
which means that .gz and .br variants of the files are added to the export.
Enable it only if your target server supports pre-compressed files.
The files are only compressed if the size of the file is bigger than the compressMinSize.
The compressMinSize is in bytes.
-->
<compressFiles>false</compressFiles>
<compressMinSize>512000</compressMinSize>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>write-release-versions</id>
<properties>
<replace.source.version>${project.version}</replace.source.version>
<replace.target.version>${project.version}</replace.target.version>
</properties>
<build>
<plugins>
<plugin>
<!-- ensure correct version in the manifest.json files-->
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<executions>
<!-- set release version -->
<execution>
<id>Set Versions from ${replace.source.version} to ${replace.target.version}</id>
<phase>validate</phase>
<goals>
<goal>replace</goal>
</goals>
<configuration>
<basedir>${basedir}</basedir>
<includes>
<include>src/main/js/**/manifest.json</include>
</includes>
<excludes>
<exclude>src/main/js/**/tests/**</exclude>
</excludes>
<regex>false</regex>
<replacements>
<replacement>
<token>"${replace.source.version}"</token>
<value>"${replace.target.version}"</value>
</replacement>
<replacement>
<token>"~${replace.source.version}"</token>
<value>"~${replace.target.version}"</value>
</replacement>
<replacement>
<token>^${replace.source.version}</token>
<value>^${replace.target.version}</value>
</replacement>
</replacements>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>