Docker Fixes
This commit is contained in:
parent
ac53f04e0a
commit
8f797a51f1
5 changed files with 69 additions and 6 deletions
22
pom.xml
22
pom.xml
|
|
@ -78,6 +78,7 @@
|
|||
</dependency>
|
||||
|
||||
<!-- Testcontainers for Dev Services -->
|
||||
<!-- These are excluded from production builds via Maven profile -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-testcontainers</artifactId>
|
||||
|
|
@ -173,6 +174,27 @@
|
|||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
</exclude>
|
||||
<!-- Exclude Testcontainers from production JAR -->
|
||||
<exclude>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-testcontainers</artifactId>
|
||||
</exclude>
|
||||
<exclude>
|
||||
<groupId>org.testcontainers</groupId>
|
||||
<artifactId>testcontainers</artifactId>
|
||||
</exclude>
|
||||
<exclude>
|
||||
<groupId>org.testcontainers</groupId>
|
||||
<artifactId>postgresql</artifactId>
|
||||
</exclude>
|
||||
<exclude>
|
||||
<groupId>org.testcontainers</groupId>
|
||||
<artifactId>jdbc</artifactId>
|
||||
</exclude>
|
||||
<exclude>
|
||||
<groupId>org.testcontainers</groupId>
|
||||
<artifactId>database-commons</artifactId>
|
||||
</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue