-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
134 lines (126 loc) · 5.21 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
<?xml version="1.0"?>
<!--
~ /*
~ * Copyright memiiso Authors.
~ *
~ * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
~ */
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>io.debezium</groupId>
<artifactId>debezium-build-parent</artifactId>
<version>3.0.5.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>debezium-server-bigquery</artifactId>
<name>Debezium Server Bigquery</name>
<version>${revision}</version>
<packaging>pom</packaging>
<properties>
<!-- NOTE: this is override by release process using CLI argument -->
<revision>0.0.1-SNAPSHOT</revision>
<!-- Debezium Version! NOTE: keep same as parent.version above! -->
<version.debezium>3.0.5.Final</version.debezium>
<!-- Instruct the build to use only UTF-8 encoding for source code -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<skipITs>true</skipITs>
<version.gcp.librariesbom>26.49.0</version.gcp.librariesbom>
<version.gcp.bigquerybom>2.45.0</version.gcp.bigquerybom>
<!-- Plugin versions -->
<version.assembly.plugin>3.7.1</version.assembly.plugin>
<version.maven-enforcer-plugin>3.5.0</version.maven-enforcer-plugin>
<version.maven-failsafe-plugin>3.5.0</version.maven-failsafe-plugin>
<version.maven-surefire-plugin>3.5.0</version.maven-surefire-plugin>
</properties>
<dependencyManagement>
<dependencies>
<!-- Google -->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquery-bom</artifactId>
<version>${version.gcp.bigquerybom}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>${version.gcp.librariesbom}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- END Google -->
<!-- debezium server -->
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-server-bom</artifactId>
<version>${version.debezium}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-bom</artifactId>
<version>${version.debezium}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>debezium-server-bigquery-sinks</module>
<module>debezium-server-bigquery-dist</module>
<module>debezium-server-converters</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${version.maven-enforcer-plugin}</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.6.3,)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
<execution>
<id>enforce-dependencyConvergence</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<DependencyConvergence/>
</rules>
<fail>false</fail>
</configuration>
</execution>
</executions>
<configuration>
<rules>
<requireJavaVersion>
<message>You are running an incompatible version of Java. Debezium Quarkus supports JDK 11
or
later.
</message>
<version>[11,)</version>
</requireJavaVersion>
</rules>
</configuration>
</plugin>
</plugins>
</build>
</project>