quarkus-bom-quarkus-platform-properties
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-bom-quarkus-platform-properties</artifactId> <version>3.21.2</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"> <parent> <artifactId>quarkus-devtools-all</artifactId> <groupId>io.quarkus</groupId> <version>3.21.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>quarkus-bom-quarkus-platform-properties</artifactId> <packaging>pom</packaging> <name>Quarkus - Platform Properties</name> <dependencies> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <!-- version>3.2.0</version --> <executions> <execution> <phase>process-resources</phase> <goals> <goal>resources</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-platform-bom-maven-plugin</artifactId> <executions> <execution> <phase>process-resources</phase> <goals> <goal>platform-properties</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>