-
Notifications
You must be signed in to change notification settings - Fork 69
/
pom.xml
62 lines (57 loc) · 3.08 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.confluent</groupId>
<artifactId>common</artifactId>
<version>6.2.2</version>
</parent>
<groupId>io.confluent</groupId>
<artifactId>common-docker</artifactId>
<packaging>pom</packaging>
<version>6.2.2</version>
<name>${project.artifactId}</name>
<description>Common Docker utilities, and new cp-base image</description>
<modules>
<module>utility-belt</module>
<module>docker-utils</module>
<module>base</module>
<module>jmxterm</module>
<!-- <module>kerberos</module> -->
</modules>
<properties>
<docker.os_type>ubi8</docker.os_type>
<docker.file>Dockerfile.${docker.os_type}</docker.file>
<docker.tag>${io.confluent.common-docker.version}-${docker.os_type}</docker.tag>
<io.confluent.common-docker.version>6.2.2</io.confluent.common-docker.version>
<!-- Versions-->
<ubi.image.version>8.7-1085</ubi.image.version>
<!-- Redhat Package Versions -->
<ubi.openssl.version>1.1.1k-6.el8_5</ubi.openssl.version>
<ubi.wget.version>1.19.5-10.el8</ubi.wget.version>
<ubi.netcat.version>7.70-8.el8</ubi.netcat.version>
<ubi.python36.version>3.6.8-38.module+el8.5.0+12207+5c5719bc</ubi.python36.version>
<ubi.tar.version>1.30-6.el8_7.1</ubi.tar.version>
<ubi.procps.version>3.3.15-9.el8</ubi.procps.version>
<ubi.krb5.workstation.version>1.18.2-22.el8_7</ubi.krb5.workstation.version>
<ubi.iputils.version>20180629-10.el8</ubi.iputils.version>
<ubi.hostname.version>3.20-6.el8</ubi.hostname.version>
<ubi.xzlibs.version>5.2.4-4.el8_6</ubi.xzlibs.version>
<ubi.glibc.version>2.28-211.el8</ubi.glibc.version>
<ubi.curl.version>7.61.1-25.el8_7.2</ubi.curl.version>
<!-- ZULU OpenJDK Package Version -->
<ubi.zulu.openjdk.version>11.0.18-1</ubi.zulu.openjdk.version>
<!-- Python Module Versions -->
<ubi.python.pip.version>21.*</ubi.python.pip.version>
<ubi.python.setuptools.version>54.*</ubi.python.setuptools.version>
<ubi.python.confluent.docker.utils.version>v0.0.49</ubi.python.confluent.docker.utils.version>
<!-- In base/{pom.xml,Dockerfile.ubi} this property is used to to fail a build if the Yum/Dnf package manager
detects that there is security update availible to be installed. Set to true if you want to skip the check
(more accurately the check is still done, it just won't fail if an update is detected), or leave it as
false to enforce the check. Users may override this behavior on the maven CLI by adding this option:
`-Ddocker.skip-security-update-check=true` -->
<docker.skip-security-update-check>false</docker.skip-security-update-check>
</properties>
</project>