Skip to content

Commit 1855b3d

Browse files
author
Michael Wiles
committed
removed docker maven plugin dep (now uses testcontainer)
1 parent 5c8687d commit 1855b3d

5 files changed

Lines changed: 139 additions & 94 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
/**/pom.xml~
88
/atlassian-ide-plugin.xml
99
/**/*.yaml
10+
/.classpath

pom.xml

Lines changed: 6 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -122,47 +122,6 @@
122122
</execution>
123123
</executions>
124124
</plugin>
125-
<plugin>
126-
<groupId>org.jolokia</groupId>
127-
<artifactId>docker-maven-plugin</artifactId>
128-
<version>0.13.8</version>
129-
<configuration>
130-
<images>
131-
<image>
132-
<name>afrozaar/wordpress</name>
133-
<run>
134-
<log>
135-
<enabled>true</enabled>
136-
<color>red</color>
137-
</log>
138-
<wait>
139-
<log>INFO success: mysqld entered RUNNING state</log>
140-
</wait>
141-
<ports>
142-
<port>80:80</port>
143-
</ports>
144-
</run>
145-
</image>
146-
</images>
147-
<docker.follow />
148-
</configuration>
149-
<executions>
150-
<execution>
151-
<id>integration-test-start</id>
152-
<phase>pre-integration-test</phase>
153-
<goals>
154-
<goal>start</goal>
155-
</goals>
156-
</execution>
157-
<execution>
158-
<id>integration-test-stop</id>
159-
<phase>post-integration-test</phase>
160-
<goals>
161-
<goal>stop</goal>
162-
</goals>
163-
</execution>
164-
</executions>
165-
</plugin>
166125
<plugin>
167126
<groupId>org.apache.maven.plugins</groupId>
168127
<artifactId>maven-failsafe-plugin</artifactId>
@@ -248,5 +207,11 @@
248207
<artifactId>jsr305</artifactId>
249208
<version>3.0.1</version>
250209
</dependency>
210+
<dependency>
211+
<groupId>org.testcontainers</groupId>
212+
<artifactId>testcontainers</artifactId>
213+
<version>1.7.3</version>
214+
<scope>test</scope>
215+
</dependency>
251216
</dependencies>
252217
</project>

0 commit comments

Comments
 (0)