-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
103 lines (97 loc) · 3.22 KB
/
pom.xml
File metadata and controls
103 lines (97 loc) · 3.22 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
<?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">
<parent>
<groupId>org.example</groupId>
<artifactId>testcontainers-examples</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<name>${project.parent.artifactId} => ${project.artifactId} (application under test)</name>
<modelVersion>4.0.0</modelVersion>
<artifactId>ui</artifactId>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${docker-maven-plugin.version}</version>
<configuration>
<follow>false</follow>
<verbose>true</verbose>
<useColor>true</useColor>
<logDate>default</logDate>
<autoPull>always</autoPull>
<keepRunning>false</keepRunning>
<watchInterval>500</watchInterval>
<allContainers>true</allContainers>
<removeVolumes>true</removeVolumes>
<!--<autoCreateCustomNetworks>true</autoCreateCustomNetworks>-->
<autoCreateCustomNetworks>false</autoCreateCustomNetworks>
<images>
<image>
<name>daggerok/${project.parent.artifactId}-${project.artifactId}:${project.version}</name>
<run>
<imagePullPolicy>Never</imagePullPolicy>
<ports>
<port>8080:8080</port>
</ports>
<wait>
<!--<http>
<url>http://127.0.0.1:8080/ui/</url>
<method>GET</method>
<status>200..399</status>
</http>-->
<time>10000</time>
<healthy>true</healthy>
<shutdown>500</shutdown>
</wait>
</run>
</image>
</images>
</configuration>
</plugin>
</plugins>
</build>
<!--<repositories>
<repository>
<id>jboss-ga-repository</id>
<url>http://maven.repository.redhat.com/techpreview/all</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>jboss-ga-plugin-repository</id>
<url>http://maven.repository.redhat.com/techpreview/all</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>-->
</project>