quarkus-flags-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.quarkiverse.flags</groupId>
<artifactId>quarkus-flags-parent</artifactId>
<version>1.0.0.Beta5</version>
</dependency><?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>
<parent>
<groupId>io.quarkiverse</groupId>
<artifactId>quarkiverse-parent</artifactId>
<version>20</version>
</parent>
<groupId>io.quarkiverse.flags</groupId>
<artifactId>quarkus-flags-parent</artifactId>
<version>1.0.0.Beta5</version>
<packaging>pom</packaging>
<name>Quarkus Feature Flags - Parent</name>
<modules>
<module>core</module>
<module>hibernate-common</module>
<module>hibernate-orm</module>
<module>security</module>
<module>qute</module>
<module>cron</module>
</modules>
<properties>
<quarkus.version>3.27.1</quarkus.version>
<sundrio.version>0.230.2</sundrio.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.version}</version>
</plugin>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-config-doc-maven-plugin</artifactId>
<version>${quarkus.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>io.sundr</groupId>
<artifactId>sundr-maven-plugin</artifactId>
<version>${sundrio.version}</version>
<executions>
<execution>
<goals>
<goal>generate-bom</goal>
</goals>
<configuration>
<boms>
<bom>
<artifactId>quarkus-flags-bom</artifactId>
<name>Quarkus Feature Flags - BOM</name>
<modules>
<excludes>
<exclude>
io.quarkiverse.flags:*-integration-tests</exclude>
<exclude>
io.quarkiverse.flags:quarkus-flags-docs</exclude>
</excludes>
</modules>
</bom>
</boms>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>it</id>
<activation>
<property>
<name>performRelease</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>integration-tests</module>
<module>docs</module>
</modules>
</profile>
<profile>
<id>jdk25+</id>
<activation>
<jdk>[25,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- See for example https://github.com/jboss/jboss-threads/pull/215 -->
<argLine>--add-opens java.base/java.lang=ALL-UNNAMED</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<tag>1.0.0.Beta5</tag>
</scm>
</project>