68b98589cb
Deploy to Production / deploy (push) Failing after 3m2s
- apix-common/pom.xml: add microprofile-openapi-api (provided) so @Schema annotations on shared enums compile without Quarkus on classpath - apix-registry/pom.xml: pending fixes from previous session - pom.xml (root): pending parent pom updates Co-Authored-By: Mira <noreply@anthropic.com>
196 lines
8.7 KiB
XML
196 lines
8.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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
|
|
https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.botstandards</groupId>
|
|
<artifactId>apix-parent</artifactId>
|
|
<version>${revision}</version>
|
|
<packaging>pom</packaging>
|
|
<name>APIX :: Parent</name>
|
|
|
|
<modules>
|
|
<module>apix-common</module>
|
|
<module>apix-verification</module>
|
|
<module>apix-registry</module>
|
|
<module>apix-spider</module>
|
|
<module>apix-portal</module>
|
|
<module>apix-demo</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<revision>1.0-SNAPSHOT</revision>
|
|
<maven.compiler.release>21</maven.compiler.release>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
|
|
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
|
|
<quarkus.platform.version>3.15.1</quarkus.platform.version>
|
|
<compiler-plugin.version>3.13.0</compiler-plugin.version>
|
|
<surefire-plugin.version>3.2.5</surefire-plugin.version>
|
|
<cucumber.version>7.15.0</cucumber.version>
|
|
<assertj.version>3.25.3</assertj.version>
|
|
<allure.version>2.25.0</allure.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${quarkus.platform.group-id}</groupId>
|
|
<artifactId>${quarkus.platform.artifact-id}</artifactId>
|
|
<version>${quarkus.platform.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- Internal modules — version managed here so child POMs omit it -->
|
|
<dependency>
|
|
<groupId>org.botstandards</groupId>
|
|
<artifactId>apix-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.botstandards</groupId>
|
|
<artifactId>apix-verification</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- Cucumber BDD -->
|
|
<dependency>
|
|
<groupId>io.cucumber</groupId>
|
|
<artifactId>cucumber-java</artifactId>
|
|
<version>${cucumber.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.cucumber</groupId>
|
|
<artifactId>cucumber-junit-platform-engine</artifactId>
|
|
<version>${cucumber.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- AssertJ — explicit version in case Quarkus BOM does not provide it -->
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>${assertj.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- Allure BDD reporting -->
|
|
<dependency>
|
|
<groupId>io.qameta.allure</groupId>
|
|
<artifactId>allure-cucumber7-jvm</artifactId>
|
|
<version>${allure.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${compiler-plugin.version}</version>
|
|
<configuration>
|
|
<release>21</release>
|
|
<!-- Preserve method parameter names for RESTEasy / Jackson -->
|
|
<compilerArgs>
|
|
<arg>-parameters</arg>
|
|
</compilerArgs>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${surefire-plugin.version}</version>
|
|
<configuration>
|
|
<systemPropertyVariables>
|
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>${quarkus.platform.group-id}</groupId>
|
|
<artifactId>quarkus-maven-plugin</artifactId>
|
|
<version>${quarkus.platform.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>${surefire-plugin.version}</version>
|
|
<configuration>
|
|
<systemPropertyVariables>
|
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>3.6.0</version>
|
|
</plugin>
|
|
<!-- Version-managed here; configured per-module in apix-registry -->
|
|
<plugin>
|
|
<groupId>org.liquibase</groupId>
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
|
<version>4.27.0</version>
|
|
</plugin>
|
|
<!-- allure:report and allure:serve — configured per-module -->
|
|
<plugin>
|
|
<groupId>io.qameta.allure</groupId>
|
|
<artifactId>allure-maven</artifactId>
|
|
<version>2.13.0</version>
|
|
<configuration>
|
|
<!-- Keep report version in sync with the library version -->
|
|
<reportVersion>${allure.version}</reportVersion>
|
|
<resultsDirectory>${project.build.directory}/allure-results</resultsDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<!-- Aggregated Allure report — NOT bound to a lifecycle phase.
|
|
Run explicitly AFTER tests: mvn allure:serve or mvn allure:report
|
|
Results land in target/allure-results because every module writes there
|
|
via allure.results.directory=../target/allure-results in allure.properties.
|
|
inherited=false ensures this block is ignored by child modules. -->
|
|
<plugin>
|
|
<groupId>io.qameta.allure</groupId>
|
|
<artifactId>allure-maven</artifactId>
|
|
<inherited>false</inherited>
|
|
<configuration>
|
|
<resultsDirectory>${project.build.directory}/allure-results</resultsDirectory>
|
|
<reportDirectory>${project.build.directory}/allure-report</reportDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- Resolves ${revision} in installed/deployed POMs so inter-module
|
|
dependencies can find each other in the local repository. -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
<version>1.6.0</version>
|
|
<configuration>
|
|
<updatePomFile>true</updatePomFile>
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>flatten</id>
|
|
<phase>process-resources</phase>
|
|
<goals>
|
|
<goal>flatten</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>flatten.clean</id>
|
|
<phase>clean</phase>
|
|
<goals>
|
|
<goal>clean</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|