quarkus-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-cli</artifactId> <version>3.21.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>quarkus-build-parent</artifactId> <groupId>io.quarkus</groupId> <version>3.21.2</version> <relativePath>../../build-parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <properties> <quarkus.package.jar.type>uber-jar</quarkus.package.jar.type> </properties> <artifactId>quarkus-cli</artifactId> <name>Quarkus - Command Line Interface</name> <description>Quarkus command line utility</description> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-picocli</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-devtools-common</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-project-core-extension-codestarts</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-jackson</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-apache-httpclient</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-netty</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-qute</artifactId> </dependency> <!-- Somehow, we need this as otherwise you end up with: java.lang.ClassNotFoundException: io.netty.handler.codec.http2.DefaultHttp2FrameWriter as we try to initialize them at runtime anyway which is weird because the NettyProcessor correctly checks if the HTTP2 support is around. Note that if you drop this dependency, the native image build will finish, but the native image will be all broken. --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-http2</artifactId> </dependency> <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>log4j-jboss-logmanager</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-devtools-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.smallrye.config</groupId> <artifactId>smallrye-config-crypto</artifactId> <scope>test</scope> </dependency> <!-- This dependency is here to make sure the build order is correct--> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-picocli-deployment</artifactId> <type>pom</type> <scope>test</scope> <version>${project.version}</version> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-jackson-deployment</artifactId> <type>pom</type> <scope>test</scope> <version>${project.version}</version> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-netty-deployment</artifactId> <type>pom</type> <scope>test</scope> <version>${project.version}</version> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-apache-httpclient-deployment</artifactId> <type>pom</type> <scope>test</scope> <version>${project.version}</version> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-qute-deployment</artifactId> <type>pom</type> <scope>test</scope> <version>${project.version}</version> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>false</filtering> </testResource> </testResources> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-maven-plugin</artifactId> <executions> <execution> <goals> <goal>build</goal> <goal>generate-code</goal> <goal>generate-code-tests</goal> </goals> <configuration> <skipOriginalJarRename>true</skipOriginalJarRename> <environmentVariables> <MAVEN_REPO_LOCAL>${settings.localRepository}</MAVEN_REPO_LOCAL> <GRADLE_OPTS>${env.MAVEN_OPTS}</GRADLE_OPTS> </environmentVariables> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <environmentVariables> <JBANG_REPO>${settings.localRepository}</JBANG_REPO> </environmentVariables> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>native</id> <activation> <property> <name>native</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <systemPropertyVariables> <native.image.path> ${project.build.directory}/${project.build.finalName}-runner </native.image.path> </systemPropertyVariables> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <quarkus.native.enabled>true</quarkus.native.enabled> </properties> </profile> </profiles> </project>