paulovmr commented on code in PR #2167: URL: https://github.com/apache/incubator-kie-tools/pull/2167#discussion_r1517816743
########## packages/sonataflow-quarkus-devui-extension-parent/sonataflow-quarkus-devui-extension-deployment/pom.xml: ########## @@ -0,0 +1,212 @@ +<?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 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" + xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.kie.sonataflow</groupId> + <artifactId>sonataflow-quarkus-devui-extension-parent</artifactId> + <version>${revision}</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>sonataflow-quarkus-devui-extension-deployment</artifactId> + <name>KIE Tools :: SonataFlow Quarkus Dev UI Extension :: Deployment</name> + + <properties> + <path.to.webapp.app>../../serverless-workflow-dev-ui-webapp</path.to.webapp.app> + </properties> + + <dependencies> + <!-- quarkus --> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-development-mode-spi</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-core-deployment</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-arc-deployment</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-resteasy-deployment</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-resteasy-jackson-deployment</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-rest-client-deployment</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-resteasy-multipart-deployment</artifactId> + </dependency> + <dependency> + <groupId>org.kie.kogito</groupId> + <artifactId>kogito-quarkus-extension-spi</artifactId> + <version>${version.org.kie.kogito}</version> + </dependency> + + <!-- Undertow is needed so that the static resource serving can correctly locate CP resources from `META-INF/resources` of the application, as it would be normally expected. + See https://issues.redhat.com/browse/KOGITO-3477 --> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-undertow-deployment</artifactId> + </dependency> + + <!-- test --> + <dependency> + <groupId>io.rest-assured</groupId> + <artifactId>rest-assured</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.kie.sonataflow</groupId> + <artifactId>sonataflow-quarkus-devui-extension</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-junit5-internal</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.kie.kogito</groupId> + <artifactId>kogito-apps-ui-packages</artifactId> Review Comment: This dependency is not needed anymore since we moved the ui-packages components to kie-tools as well. -- 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]
