quarkus-roq
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.roq</groupId> <artifactId>quarkus-roq</artifactId> <version>1.0.4</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.roq</groupId> <artifactId>quarkus-roq-parent</artifactId> <version>1.0.4</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>quarkus-roq</artifactId> <name>Quarkus Roq - Runtime</name> <dependencies> <dependency> <groupId>io.quarkiverse.roq</groupId> <artifactId>quarkus-roq-generator</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.quarkiverse.roq</groupId> <artifactId>quarkus-roq-frontmatter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.quarkiverse.roq</groupId> <artifactId>quarkus-roq-plugin-markdown</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.quarkiverse.web-bundler</groupId> <artifactId>quarkus-web-bundler</artifactId> <version>${quarkus-web-bundler.version}</version> </dependency> </dependencies> <build> <resources> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> </resource> <resource> <filtering>true</filtering> <directory>src/main/codestarts</directory> <includes> <include>**/codestart.yml</include> </includes> <targetPath>../codestarts</targetPath> </resource> <resource> <filtering>false</filtering> <directory>src/main/codestarts</directory> <excludes> <exclude>**/codestart.yml</exclude> </excludes> <targetPath>../codestarts</targetPath> </resource> </resources> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-maven-plugin</artifactId> <version>${quarkus.version}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>extension-descriptor</goal> </goals> <configuration> <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${quarkus.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>generate-codestart-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classesDirectory>${project.build.directory}</classesDirectory> <includes> <include>codestarts/**</include> </includes> <classifier>codestarts</classifier> <skipIfEmpty>true</skipIfEmpty> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>