gabriel-farache commented on code in PR #4000: URL: https://github.com/apache/incubator-kie-kogito-runtimes/pull/4000#discussion_r2266843488
########## quarkus/extensions/kogito-quarkus-serverless-workflow-jdbc-token-persistence-extension/kogito-quarkus-serverless-workflow-jdbc-token-persistence-integration-test/pom.xml: ########## @@ -0,0 +1,314 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one + ~ or more contributor license agreements. See the NOTICE file + ~ distributed with this work for additional information + ~ regarding copyright ownership. The ASF licenses this file + ~ to you under the Apache License, Version 2.0 (the + ~ "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, + ~ software distributed under the License is distributed on an + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + ~ KIND, either express or implied. See the License for the + ~ specific language governing permissions and limitations + ~ under the License. + --> + +<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"> + <parent> + <artifactId>sonataflow-quarkus-jdbc-token-persistence-extension</artifactId> + <groupId>org.apache.kie.sonataflow</groupId> + <version>999-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>sonataflow-quarkus-jdbc-token-persistence-integration-test</artifactId> + <description>SonataFlow :: Quarkus Serverless Workflow JDBC Token Persistence Extension :: Integration Tests</description> + + + <properties> + <quarkus.test.list.include>true</quarkus.test.list.include> + <!-- base path for serverless workflow files that are being used for testing the parsing specific unit tests, and + that we also want to use for testing them executing. --> + <java.module.name>org.kie.kogito.quarkus.workflows.tests</java.module.name> + </properties> + + + <dependencies> + <dependency> + <groupId>org.apache.kie.sonataflow</groupId> + <artifactId>sonataflow-quarkus</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-resteasy</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-resteasy-jackson</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-resteasy-client-oidc-filter</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-messaging-kafka</artifactId> + <exclusions> + <!-- Overriding kafka-clients to fix a vulnerability. + This exclusion can be removed when Quarkus will contain kafka-clients in at least version 3.9.1. --> + <exclusion> + <groupId>org.apache.kafka</groupId> + <artifactId>kafka-clients</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.kafka</groupId> + <artifactId>kafka-clients</artifactId> + </dependency> + <dependency> + <groupId>org.apache.kie.sonataflow</groupId> + <artifactId>sonataflow-quarkus-jdbc-token-persistence</artifactId> + <version>${project.version}</version> Review Comment: I need them otherwise I get ``` [ERROR] The project org.apache.kie.sonataflow:sonataflow-quarkus-jdbc-token-persistence-deployment:999-SNAPSHOT (/home/gabriel/git/parodos_stuff_v2/incubator-kie-kogito-runtimes/quarkus/extensions/kogito-quarkus-serverless-workflow-jdbc-token-persistence-extension/kogito-quarkus-serverless-workflow-jdbc-token-persistence-deployment/pom.xml) has 1 error [ERROR] 'dependencies.dependency.version' for org.apache.kie.sonataflow:sonataflow-quarkus-jdbc-token-persistence:jar is missing. @ line 40, column 17 [ERROR] [ERROR] The project org.apache.kie.sonataflow:sonataflow-quarkus-jdbc-token-persistence-integration-test:999-SNAPSHOT (/home/gabriel/git/parodos_stuff_v2/incubator-kie-kogito-runtimes/quarkus/extensions/kogito-quarkus-serverless-workflow-jdbc-token-persistence-extension/kogito-quarkus-serverless-workflow-jdbc-token-persistence-integration-test/pom.xml) has 1 error [ERROR] 'dependencies.dependency.version' for org.apache.kie.sonataflow:sonataflow-quarkus-jdbc-token-persistence:jar is missing. @ line 76, column 17 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
