Skip to content

Commit

Permalink
prod: add operator to prod verifier (#5703)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsenko authored Dec 11, 2024
1 parent 8bfa4f9 commit 5a07b00
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,11 @@
<version>${project.version}</version>
<classifier>tests</classifier>
</dependency>
<dependency>
<groupId>io.apicurio</groupId>
<artifactId>apicurio-registry-distro-connect-converter</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Quarkus Dependencies -->
<dependency>
Expand Down
13 changes: 9 additions & 4 deletions prod-verifier/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@
<dependency>
<groupId>io.apicurio</groupId>
<artifactId>apicurio-registry-app</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.apicurio</groupId>
<artifactId>apicurio-registry-distro-connect-converter</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.apicurio</groupId>
<artifactId>apicurio-registry-operator-controller</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -46,10 +49,12 @@
<phase>package</phase>
<configuration>
<directories>
<param>${project.basedir}/../app/target/lib</param>
<param>${projectRoot}/app/target/lib</param>
<param>${projectRoot}/operator/controller/target/quarkus-app/lib/boot</param>
<param>${projectRoot}/operator/controller/target/quarkus-app/lib/main</param>
</directories>
<distributions>
<param>${project.basedir}/../distro/connect-converter/target/apicurio-kafka-connect-converter-${project.version}.zip</param>
<param>${projectRoot}/distro/connect-converter/target/apicurio-kafka-connect-converter-${project.version}.zip</param>
</distributions>
</configuration>
</execution>
Expand Down

0 comments on commit 5a07b00

Please sign in to comment.