-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpom.xml
More file actions
150 lines (128 loc) · 8.1 KB
/
pom.xml
File metadata and controls
150 lines (128 loc) · 8.1 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
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
<?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>[8.3.0-0, 8.3.1-0)</version>
</parent>
<groupId>io.confluent</groupId>
<artifactId>common-docker</artifactId>
<packaging>pom</packaging>
<version>8.3.0-0</version>
<name>${project.artifactId}</name>
<description>Common Docker utilities, new cp-base, and cp-base-lite image</description>
<modules>
<module>utility-belt</module>
<module>docker-utils</module>
<module>base-java</module>
<module>base-java-micro</module>
<module>base</module>
<module>base-lite</module>
<module>jmxterm</module>
<!-- <module>kerberos</module> -->
</modules>
<properties>
<docker.ubi8.os_type>ubi8</docker.ubi8.os_type>
<docker.ubi9.os_type>ubi9</docker.ubi9.os_type>
<docker.file>Dockerfile.${docker.ubi9.os_type}</docker.file>
<docker.tag>${io.confluent.common-docker.version}-${docker.ubi9.os_type}</docker.tag>
<io.confluent.common-docker.version>8.3.0-0</io.confluent.common-docker.version>
<!-- ============================================================ -->
<!-- AUTOMATED VERSION UPDATE PROPERTY NAMING CONVENTIONS -->
<!-- ============================================================ -->
<!--
Properties in this section follow specific naming patterns that enable automated version updates:
1. Base Image Versions:
Pattern: ubi<version>-<variant>.image.version
Example: ubi8-minimal.image.version
Updates: Latest tag available for the specified UBI base image
2. OS Package Versions:
Pattern: ubi<version>-<variant>.<package-name>.version
Example: ubi8-minimal.openssl.version
Updates: Latest version of the package available in the specified UBI image
3. GitHub Repository Tags:
Pattern: git-repo.<confluentinc-repo-name>.version
Example: git-repo.confluent-docker-utils.tag
Updates: Highest semantic version tag in format v{int}.{int}.{int} from the repository
4. Docker Hub Images:
Pattern: <image-name>.image.version
Example: golang.image.version
Updates: Latest image tag available on Docker Hub
5. PyPI Package Versions:
Pattern: python.<package-name>.version
Example: python.setuptools.version
Updates: Latest version of the package available on PyPI
6. Python Runtime Versions:
Pattern: python-runtime.<major>-<minor>.version
Example: python-runtime.3-14.version
Updates: Latest patch version of CPython for the specified major.minor release
When adding new properties for automated updates, follow these naming conventions to ensure
the automation tooling can correctly identify and update them.
-->
<!-- Base Image Versions -->
<ubi8-minimal.image.version>8.10-1773723642</ubi8-minimal.image.version>
<ubi9.image.version>9.7-1773204657</ubi9.image.version>
<ubi9-micro.image.version>9.7-1771346390</ubi9-micro.image.version>
<ubi9-minimal.image.version>9.7-1773204619</ubi9-minimal.image.version>
<!-- OS Package Versions -->
<ubi9.temurin-21-jdk.version>21.0.10.0.0.7-0</ubi9.temurin-21-jdk.version>
<ubi9.procps-ng.version>3.3.17-14.el9</ubi9.procps-ng.version>
<ubi9.crypto-policies-scripts.version>20250905-1.git377cc42.el9_7</ubi9.crypto-policies-scripts.version>
<ubi9.findutils.version>4.8.0-7.el9</ubi9.findutils.version>
<ubi9.hostname.version>3.23-6.el9</ubi9.hostname.version>
<ubi9.shadow-utils.version>4.9-15.el9</ubi9.shadow-utils.version>
<ubi9-minimal.openssl.version>3.5.1-7.el9_7</ubi9-minimal.openssl.version>
<ubi9-minimal.wget.version>1.21.1-8.el9_4</ubi9-minimal.wget.version>
<ubi9-minimal.nmap-ncat.version>7.92-3.el9</ubi9-minimal.nmap-ncat.version>
<ubi9-minimal.tar.version>1.34-9.el9_7</ubi9-minimal.tar.version>
<ubi9-minimal.procps-ng.version>3.3.17-14.el9</ubi9-minimal.procps-ng.version>
<ubi9-minimal.krb5-workstation.version>1.21.1-8.el9_6</ubi9-minimal.krb5-workstation.version>
<ubi9-minimal.iputils.version>20210202-15.el9_7</ubi9-minimal.iputils.version>
<ubi9-minimal.hostname.version>3.23-6.el9</ubi9-minimal.hostname.version>
<ubi9-minimal.xz-libs.version>5.2.5-8.el9_0</ubi9-minimal.xz-libs.version>
<ubi9-minimal.glibc.version>2.34-231.el9_7.10</ubi9-minimal.glibc.version>
<ubi9-minimal.findutils.version>4.8.0-7.el9</ubi9-minimal.findutils.version>
<ubi9-minimal.crypto-policies-scripts.version>20250905-1.git377cc42.el9_7</ubi9-minimal.crypto-policies-scripts.version>
<ubi9-minimal.temurin-21-jdk.version>21.0.10.0.0.7-0</ubi9-minimal.temurin-21-jdk.version>
<ubi9-minimal.python3-pip.version>21.3.1-1.el9</ubi9-minimal.python3-pip.version>
<ubi8-minimal.openssl.version>1.1.1k-15.el8_6</ubi8-minimal.openssl.version>
<ubi8-minimal.wget.version>1.19.5-12.el8_10</ubi8-minimal.wget.version>
<ubi8-minimal.nmap-ncat.version>7.92-2.el8_10</ubi8-minimal.nmap-ncat.version>
<ubi8-minimal.tar.version>1.30-11.el8_10</ubi8-minimal.tar.version>
<ubi8-minimal.procps-ng.version>3.3.15-14.el8</ubi8-minimal.procps-ng.version>
<ubi8-minimal.krb5-workstation.version>1.18.2-32.el8_10</ubi8-minimal.krb5-workstation.version>
<ubi8-minimal.iputils.version>20180629-11.el8</ubi8-minimal.iputils.version>
<ubi8-minimal.hostname.version>3.20-6.el8</ubi8-minimal.hostname.version>
<ubi8-minimal.xz-libs.version>5.2.4-4.el8_6</ubi8-minimal.xz-libs.version>
<ubi8-minimal.glibc.version>2.28-251.el8_10.31</ubi8-minimal.glibc.version>
<ubi8-minimal.curl.version>7.61.1-34.el8_10.10</ubi8-minimal.curl.version>
<ubi8-minimal.findutils.version>4.6.0-24.el8_10</ubi8-minimal.findutils.version>
<ubi8-minimal.crypto-policies-scripts.version>20230731-1.git3177e06.el8</ubi8-minimal.crypto-policies-scripts.version>
<ubi8-minimal.temurin-17-jdk.version>17.0.18.0.0.8-0</ubi8-minimal.temurin-17-jdk.version>
<!-- Python Runtime Versions -->
<python-runtime.3-14.version>3.14.3</python-runtime.3-14.version>
<!-- PyPI Package Versions -->
<python.setuptools.version>82.0.1</python.setuptools.version>
<!-- GitHub Repository Tags -->
<git-repo.confluent-docker-utils.tag>v0.0.169</git-repo.confluent-docker-utils.tag>
<git-repo.cp-docker-utils.tag>v1.0.9</git-repo.cp-docker-utils.tag>
<!-- Docker Hub Image Versions -->
<golang.image.version>1.26.1-trixie</golang.image.version>
<!-- Application User Configuration
User and group IDs for the non-root user (appuser) configured in Docker images.
These values ensure consistent UID/GID across all container images and multi-stage builds,
preventing permission issues when copying files between stages or mounting volumes.
Can be overridden at build time via: -Dapp.uid=<value> -Dapp.gid=<value> -->
<app.uid>1000</app.uid>
<app.gid>1000</app.gid>
<!-- 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>