-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
76 lines (65 loc) · 2.72 KB
/
pom.xml
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
<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>io.brachu</groupId>
<artifactId>docker-compose-maven-plugin-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>Docker Compose Maven Plugin Parent</name>
<description>Parent POM for docker-compose-maven-plugin and its testing harness</description>
<url>https://github.com/br4chu/docker-compose-maven-plugin</url>
<modules>
<module>plugin</module>
<module>test-harness/01.defaults.pom.xml</module>
<module>test-harness/02.specified-name.pom.xml</module>
<module>test-harness/03.env.pom.xml</module>
<module>test-harness/04.wait.pom.xml</module>
<module>test-harness/05.volumes.pom.xml</module>
<module>test-harness/06.skip.pom.xml</module>
<module>test-harness/07.skip-property.pom.xml</module>
<module>test-harness/08.stop.pom.xml</module>
<module>test-harness/09.stop-start.pom.xml</module>
<module>test-harness/10.workdir.pom.xml</module>
<module>test-harness/11.followlogs.pom.xml</module>
<module>test-harness/12.build.pom.xml</module>
<module>test-harness/13.down-up-down.pom.xml</module>
</modules>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Brachu</name>
<url>https://github.com/br4chu</url>
</organization>
<developers>
<developer>
<name>Marcin Jaguś</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<url>https://github.com/br4chu/docker-compose-maven-plugin</url>
<connection>scm:git:[email protected]:br4chu/docker-compose-maven-plugin.git</connection>
<developerConnection>scm:git:[email protected]:br4chu/docker-compose-maven-plugin.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<compiler-plugin.version>3.10.1</compiler-plugin.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>