-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
174 lines (167 loc) · 8.16 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
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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.9</version>
</parent>
<groupId>org.mabrarov.docker-compose-init-container</groupId>
<artifactId>docker-compose-init-container</artifactId>
<version>1.0.6</version>
<packaging>pom</packaging>
<scm>
<connection>scm:git:git@github.com:mabrarov/docker-compose-init-container.git</connection>
</scm>
<modules>
<module>app</module>
<module>app-image</module>
<module>helper-image</module>
<module>init-image</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<resource.delimiter>@</resource.delimiter>
<git.commit.dateFormat>yyyy-MM-dd'T'HH:mm:ssXXX</git.commit.dateFormat>
<!--suppress UnresolvedMavenProperty -->
<project.build.outputTimestamp>${git.commit.time}</project.build.outputTimestamp>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version>
<maven-dependency-plugin.version>3.3.0</maven-dependency-plugin.version>
<download-maven-plugin.version>1.6.8</download-maven-plugin.version>
<maven-resources-plugin.version>3.2.0</maven-resources-plugin.version>
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
<maven-assembly-plugin.version>3.5.0</maven-assembly-plugin.version>
<docker-maven-plugin.version>0.40.2</docker-maven-plugin.version>
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
<tini.version>0.19.0</tini.version>
<tini.sha512>8053cc21a3a9bdd6042a495349d1856ae8d3b3e7664c9654198de0087af031f5d41139ec85a2f5d7d2febd22ec3f280767ff23b9d5f63d490584e2b7ad3c218c</tini.sha512>
<busybox.version>1.35.0</busybox.version>
<busybox.sha512>f44863b48048b9c6b7a4f4666bf1399117739a76f339ce178ab232d84e839685e6e92c624553b00943c694a73fa8aeaaf8841f7ef7b66f4b5b633f51cc43db24</busybox.sha512>
<httpecho.version>0.2.3</httpecho.version>
<httpecho.sha512>a34fb083c95afb1e09725b2d6204c1a77548aaa3bd341cbaf65548586a496ed5284af6f2d0cfaec63b171992b143dd832e9395f634a3683c95315820e90cbf92</httpecho.sha512>
<dockerize.version>0.19.0</dockerize.version>
<dockerize.sha256>251ba488ce2bacd8f70d556fefcbb9a85fb6572e85eedc5a8a3d16a56861af83</dockerize.sha256>
<jacoco.version>0.8.8</jacoco.version>
<docker.verbose>true</docker.verbose>
<docker.skip>true</docker.skip>
<docker.cleanup>none</docker.cleanup>
<docker.image.repository.base>abrarov/</docker.image.repository.base>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.mabrarov.docker-compose-init-container</groupId>
<artifactId>app</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.agent</artifactId>
<version>${jacoco.version}</version>
<classifier>runtime</classifier>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>jacoco</artifactId>
<version>${jacoco.version}</version>
<type>zip</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>${git-commit-id-plugin.version}</version>
<configuration>
<verbose>false</verbose>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
<offline>true</offline>
<skipPoms>false</skipPoms>
<dateFormat>${git.commit.dateFormat}</dateFormat>
<dateFormatTimeZone>UTC</dateFormatTimeZone>
<includeOnlyProperties>
<includeOnlyProperty>^git\.build\.version$</includeOnlyProperty>
<includeOnlyProperty>^git\.commit\.id(\.abbrev)?$</includeOnlyProperty>
<includeOnlyProperty>^git\.commit\.time$</includeOnlyProperty>
<includeOnlyProperty>^git\.remote\.origin\.url$</includeOnlyProperty>
</includeOnlyProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>${maven-dependency-plugin.version}</version>
</plugin>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>${download-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
<configuration>
<delimiters>
<delimiter>${resource.delimiter}</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
<configuration>
<delimiters>
<delimiter>${resource.delimiter}</delimiter>
</delimiters>
<overrideUid>0</overrideUid>
<overrideUserName>root</overrideUserName>
<overrideGid>0</overrideGid>
<overrideGroupName>root</overrideGroupName>
</configuration>
</plugin>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${docker-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>docker</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<docker.skip>false</docker.skip>
</properties>
</profile>
</profiles>
</project>