quarkus-ide-launcher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-ide-launcher</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 http://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> <artifactId>quarkus-ide-launcher</artifactId> <name>Quarkus - IDE Launcher</name> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-bootstrap-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-bootstrap-maven-resolver</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-bootstrap-gradle-resolver</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-dependencies</id> <phase>prepare-package</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <excludeTypes>pom</excludeTypes> <fileMappers> <org.codehaus.plexus.components.io.filemappers.RegExpFileMapper> <pattern>$</pattern> <replacement>.ide-launcher-res</replacement> </org.codehaus.plexus.components.io.filemappers.RegExpFileMapper> </fileMappers> <outputDirectory>${project.build.directory}/unpacked-deps</outputDirectory> <useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>prepare-package</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>io.quarkus.launcher.LauncherShader</mainClass> <arguments> <argument>${project.build.directory}/unpacked-deps</argument> <argument>${project.build.directory}/classes/META-INF/ide-deps</argument> </arguments> <environmentVariables> <MAVEN_CMD_LINE_ARGS>${env.MAVEN_CMD_LINE_ARGS}</MAVEN_CMD_LINE_ARGS> </environmentVariables> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <exclude>**/LauncherShader.class</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>