-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
702 lines (672 loc) · 29.7 KB
/
pom.xml
File metadata and controls
702 lines (672 loc) · 29.7 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
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
<?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>
<!--
Spring Boot parent provides sensible defaults for plugins, dependency versions,
and configuration. Using 4.0.x for Java 17+ compatibility and latest features.
-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.1</version>
<relativePath/>
</parent>
<groupId>com.github.jguida941</groupId>
<artifactId>cs320-contact-service-junit</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>CS320 Contact Service</name>
<description>Contact, Task, and Appointment management service with REST API</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<!--
Override JUnit version from Spring Boot parent if needed.
Spring Boot 3.4 uses JUnit 5.10.x by default, which matches our needs.
-->
<junit.jupiter.version>5.10.3</junit.jupiter.version>
<surefire.version>3.5.4</surefire.version>
<checkstyle.plugin.version>3.6.0</checkstyle.plugin.version>
<spotbugs.maven.plugin.version>4.9.8.1</spotbugs.maven.plugin.version>
<jacoco.version>0.8.14</jacoco.version>
<dependency.check.version>12.1.9</dependency.check.version>
<dependency.check.skip>false</dependency.check.skip>
<nvdApiDelay>8000</nvdApiDelay>
<pitest.version>1.22.0</pitest.version>
<pit.skip>false</pit.skip>
<spotbugs.skip>false</spotbugs.skip>
<!-- Integration tests require Docker/Testcontainers; skip locally by default -->
<skipITs>true</skipITs>
</properties>
<dependencies>
<!--
Spring Boot Web starter: Brings in Spring MVC, embedded Tomcat,
Jackson for JSON, and auto-configuration for REST endpoints.
This is the foundation for our REST API layer.
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webmvc</artifactId>
</dependency>
<!--
Spring Boot Actuator: Provides production-ready features like
health checks (/actuator/health), info endpoint (/actuator/info),
and metrics. Essential for monitoring and deployment readiness.
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!--
Spring Boot Jackson 2: In Spring Boot 4.0, Jackson 3 is the default.
This module provides Jackson 2 compatibility for existing code.
Deprecated - will be removed in 4.2.0.
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-jackson2</artifactId>
</dependency>
<!--
Micrometer Prometheus Registry: Exposes metrics in Prometheus format
at /actuator/prometheus for scraping by monitoring systems.
Uses the new Prometheus Java client (1.x) required by Spring Boot 3.5+.
-->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
<!--
Bean Validation (JSR-380): Enables @Valid, @NotBlank, @Size, etc.
on DTOs. Works alongside our domain-level Validation helper so
we have two layers of defense: API-level (annotations) and
domain-level (Validation.java).
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<!--
Spring Security: Provides authentication, authorization, and
protection against common attacks (CSRF, session fixation, etc.).
Phase 5 requirement for JWT-based stateless authentication.
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<!--
JJWT (Java JWT): Library for creating and validating JSON Web Tokens.
Used for stateless authentication in the REST API. Includes:
- jjwt-api: Core interfaces
- jjwt-impl: Implementation (runtime)
- jjwt-jackson: JSON processing with Jackson (runtime)
-->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.13.0</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.13.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.13.0</version>
<scope>runtime</scope>
</dependency>
<!--
Bucket4j: Token bucket rate limiting library for preventing API abuse.
Used to enforce per-IP and per-user rate limits on high-risk endpoints.
-->
<dependency>
<groupId>com.bucket4j</groupId>
<artifactId>bucket4j-core</artifactId>
<version>8.10.1</version>
</dependency>
<!--
Caffeine: High-performance caching library used to bound rate limit
bucket maps with max size and time-based expiration (prevents DoS).
-->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>3.2.3</version>
</dependency>
<!--
Spring Data JPA: Provides Hibernate + repository support so we can
persist domain aggregates in Postgres while keeping services simple.
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!--
Spring Boot Flyway Starter: Provides auto-configuration for Flyway
database migrations. In Spring Boot 4.0, this starter is required
(previously flyway-core alone was sufficient).
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-flyway</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
</dependency>
<!--
PostgreSQL JDBC driver used by dev/prod profiles.
Scope runtime so it isn't required for compilation.
-->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<!--
SpringDoc OpenAPI: Auto-generates OpenAPI 3.0 specification from
Spring MVC controllers. Provides Swagger UI at /swagger-ui.html
and OpenAPI JSON at /v3/api-docs. Required for Phase 2 API docs.
-->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>3.0.0</version>
</dependency>
<!--
Override commons-lang3 version from Spring Boot parent to fix CVE-2025-48924.
Spring Boot 3.4.12 uses 3.17.0 which is vulnerable.
-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.20.0</version>
</dependency>
<!--
Force commons-compress to 1.28.0 to remediate CVE-2024-25710/CVE-2024-26308
flagged by OWASP Dependency-Check (transitive dependency via SpringDoc).
-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.28.0</version>
</dependency>
<!--
Logstash Logback Encoder: Provides structured JSON logging for production.
Enables correlation IDs, custom fields, and easy integration with ELK/observability platforms.
Includes StructuredArguments for programmatic field injection.
-->
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>9.0</version>
</dependency>
<!--
SpotBugs annotations for static analysis.
Scope is provided since these are compile-time only.
-->
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>4.9.8</version>
<scope>provided</scope>
</dependency>
<!-- ==================== Test Dependencies ==================== -->
<!--
Spring Boot Test starter: Brings in JUnit 5, Mockito, AssertJ,
Spring Test, and MockMvc for testing REST controllers.
Replaces our standalone JUnit/AssertJ dependencies.
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!--
Spring Boot 4.0 modularized test starters - required for test annotations.
See: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-4.0-Migration-Guide
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webmvc-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa-test</artifactId>
<scope>test</scope>
</dependency>
<!--
Spring Security Test: Provides @WithMockUser, SecurityMockMvcRequestPostProcessors,
and other utilities for testing secured endpoints.
-->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<!-- H2 in-memory database used by fast test slices/profile -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Testcontainers + Spring Boot integration for Postgres-backed tests -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<version>1.21.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.21.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-testcontainers</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<useModulePath>false</useModulePath>
<!-- Prevent fork bombing: use single JVM to avoid resource exhaustion -->
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
<!-- Sequential execution to ensure @Isolated tests don't collide -->
<excludedGroups>legacy-singleton</excludedGroups>
<excludes>
<exclude>**/*IT.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<skipITs>${skipITs}</skipITs>
<useModulePath>false</useModulePath>
<parallel>classes</parallel>
<useUnlimitedThreads>true</useUnlimitedThreads>
<includes>
<include>**/*IT.java</include>
</includes>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.plugin.version}</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>config/checkstyle/checkstyle.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs.maven.plugin.version}</version>
<configuration>
<effort>max</effort>
<threshold>Low</threshold>
<failOnError>true</failOnError>
<skip>${spotbugs.skip}</skip>
<htmlOutput>true</htmlOutput>
<xmlOutput>true</xmlOutput>
<excludeFilterFile>config/spotbugs-exclude.xml</excludeFilterFile>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>spotbugs</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<configuration>
<!-- Allow profiles (e.g., skip-testcontainers) to disable JaCoCo gates via jacoco.skip -->
<skip>${jacoco.skip}</skip>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.80</minimum>
</limit>
</limits>
</rule>
</rules>
<excludes>
<!-- Exclude container-only support classes from coverage checks (reduces noise on skip-testcontainers runs) -->
<exclude>contactapp/support/PostgresContainerSupport*.class</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependency.check.version}</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
<configuration>
<failBuildOnCVSS>7.0</failBuildOnCVSS>
<nvdApiKey>${env.NVD_API_KEY}</nvdApiKey>
<nvdApiDelay>${nvdApiDelay}</nvdApiDelay>
<dataDirectory>${project.basedir}/.owasp-cache</dataDirectory>
<nvdValidForHours>168</nvdValidForHours>
<suppressionFiles>
<suppressionFile>config/owasp-suppressions.xml</suppressionFile>
</suppressionFiles>
<failOnError>false</failOnError>
<skip>${dependency.check.skip}</skip>
<skipTestScope>false</skipTestScope>
<formats>HTML,JSON</formats>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
<nuspecAnalyzerEnabled>false</nuspecAnalyzerEnabled>
<nodeAnalyzerEnabled>false</nodeAnalyzerEnabled>
</configuration>
</plugin>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>${pitest.version}</version>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>1.2.3</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>mutationCoverage</goal>
</goals>
</execution>
</executions>
<configuration>
<targetClasses>
<param>contactapp.*</param>
</targetClasses>
<targetTests>
<param>contactapp.*Test</param>
</targetTests>
<mutationThreshold>70</mutationThreshold>
<threads>2</threads>
<timeoutFactor>1.5</timeoutFactor>
<timestampedReports>false</timestampedReports>
<outputFormats>
<param>XML</param>
<param>HTML</param>
</outputFormats>
<features>
<feature>+CLASSLIMIT(limit[1000])</feature>
</features>
<skip>${pit.skip}</skip>
</configuration>
</plugin>
<!--
Frontend Maven Plugin: Builds the React UI during prepare-package phase.
This keeps 'mvn test' fast (no UI build) while 'mvn package' produces
a single JAR with both backend and static frontend assets.
See ADR-0028 for design rationale.
-->
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<workingDirectory>ui/contact-app</workingDirectory>
<nodeVersion>v22.16.0</nodeVersion>
</configuration>
<executions>
<execution>
<id>install-node-npm</id>
<phase>prepare-package</phase>
<goals>
<goal>install-node-and-npm</goal>
</goals>
</execution>
<execution>
<id>npm-install</id>
<phase>prepare-package</phase>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>ci</arguments>
</configuration>
</execution>
<execution>
<id>npm-build</id>
<phase>prepare-package</phase>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run build</arguments>
</configuration>
</execution>
</executions>
</plugin>
<!--
Maven Resources Plugin: Copies built UI assets to static/ so Spring Boot
serves them at the root path. Runs after npm build in prepare-package.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-frontend</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}/static</outputDirectory>
<resources>
<resource>
<directory>ui/contact-app/dist</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!--
Spring Boot Maven Plugin: Enables 'mvn spring-boot:run' for local dev
and packages the app as an executable JAR with embedded Tomcat.
Repackage goal runs during package phase to create the fat JAR.
-->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>legacy-singleton</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>legacy-singleton</groups>
<includes>
<include>**/service/*Test.java</include>
</includes>
<excludes>
<exclude>**/*IT.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<skipITs>true</skipITs>
</properties>
</profile>
<!--
Profile to skip Testcontainers-based tests on platforms without Docker support.
Activated by passing -DskipTestcontainersTests=true (used on Windows CI runners).
-->
<profile>
<id>skip-testcontainers</id>
<activation>
<property>
<name>skipTestcontainersTests</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<!-- Run a reduced JaCoCo check on Windows/H2 by excluding container-only code paths -->
<skip>false</skip>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<!-- Reduced threshold for Windows/no-Docker runs that skip integration tests -->
<minimum>0.75</minimum>
</limit>
</limits>
</rule>
</rules>
<excludes>
<exclude>contactapp/support/PostgresContainerSupport*.class</exclude>
<exclude>contactapp/api/**</exclude>
<exclude>contactapp/config/**</exclude>
<exclude>contactapp/Application*.class</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<!-- Skip PostgresContainerSupport-based suites when Docker is unavailable -->
<exclude>**/ApplicationTest.java</exclude>
<exclude>**/ActuatorEndpointsTest.java</exclude>
<exclude>**/*ControllerTest.java</exclude>
<exclude>**/SecurityConfigIntegrationTest.java</exclude>
<exclude>**/ServiceBeanTest.java</exclude>
<exclude>**/*IT.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<!-- H2 in-memory datasource for non-container runs -->
<spring.datasource.url>jdbc:h2:mem:contacts;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE;DB_CLOSE_DELAY=-1</spring.datasource.url>
<spring.datasource.driver-class-name>org.h2.Driver</spring.datasource.driver-class-name>
<spring.datasource.username>sa</spring.datasource.username>
<spring.datasource.password></spring.datasource.password>
<!-- Skip the global Jacoco gate; use the profile-scoped reduced gate above -->
<jacoco.skip>true</jacoco.skip>
<!-- Disable Flyway against H2 for this profile if desired -->
<!-- <spring.flyway.enabled>false</spring.flyway.enabled> -->
</properties>
</profile>
</profiles>
</project>