|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <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"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | | - <parent> |
5 | | - <groupId>io.apicurio</groupId> |
6 | | - <artifactId>apicurio-registry</artifactId> |
7 | | - <version>3.1.4-SNAPSHOT</version> |
8 | | - <relativePath>../../../pom.xml</relativePath> |
9 | | - </parent> |
10 | 4 |
|
| 5 | + <!-- |
| 6 | + This module is intentionally standalone (no parent) to avoid parent POM |
| 7 | + resolution issues in CI where the integration-tests profile activates |
| 8 | + additional modules. All required properties are defined locally. |
| 9 | + --> |
| 10 | + <groupId>io.apicurio</groupId> |
11 | 11 | <artifactId>apicurio-registry-old-protobuf-serializer</artifactId> |
| 12 | + <version>3.1.5-SNAPSHOT</version> |
12 | 13 | <packaging>jar</packaging> |
13 | 14 | <name>apicurio-registry-old-protobuf-serializer</name> |
14 | 15 | <description>Shaded old protobuf serializer (v3.1.2) for backward compatibility testing</description> |
15 | 16 |
|
16 | 17 | <properties> |
17 | | - <projectRoot>${project.basedir}/../../..</projectRoot> |
| 18 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | + <maven.compiler.source>17</maven.compiler.source> |
| 20 | + <maven.compiler.target>17</maven.compiler.target> |
| 21 | + <maven.compiler.release>17</maven.compiler.release> |
18 | 22 | <old.registry.version>3.1.2</old.registry.version> |
| 23 | + <kafka-clients.version>3.9.1</kafka-clients.version> |
19 | 24 | </properties> |
20 | 25 |
|
21 | 26 | <dependencyManagement> |
|
95 | 100 | <dependency> |
96 | 101 | <groupId>org.apache.kafka</groupId> |
97 | 102 | <artifactId>kafka-clients</artifactId> |
| 103 | + <version>${kafka-clients.version}</version> |
98 | 104 | </dependency> |
99 | 105 | </dependencies> |
100 | 106 |
|
101 | 107 | <build> |
102 | 108 | <plugins> |
| 109 | + <plugin> |
| 110 | + <groupId>org.apache.maven.plugins</groupId> |
| 111 | + <artifactId>maven-compiler-plugin</artifactId> |
| 112 | + <version>3.13.0</version> |
| 113 | + <configuration> |
| 114 | + <source>${maven.compiler.source}</source> |
| 115 | + <target>${maven.compiler.target}</target> |
| 116 | + <release>${maven.compiler.release}</release> |
| 117 | + </configuration> |
| 118 | + </plugin> |
103 | 119 | <plugin> |
104 | 120 | <groupId>org.apache.maven.plugins</groupId> |
105 | 121 | <artifactId>maven-shade-plugin</artifactId> |
|
0 commit comments