jline-native
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jline</groupId> <artifactId>jline-native</artifactId> <version>3.29.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2023, the original author or authors. This software is distributable under the BSD license. See the terms of the BSD license in the documentation provided with this software. https://opensource.org/licenses/BSD-3-Clause --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jline</groupId> <artifactId>jline-parent</artifactId> <version>3.29.0</version> </parent> <artifactId>jline-native</artifactId> <packaging>jar</packaging> <name>JLine Native Library</name> <properties> <automatic.module.name>org.jline.nativ</automatic.module.name> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli-codegen</artifactId> <version>4.7.6</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> </includes> </resource> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> <excludes> <exclude>**/*.properties</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> <dependencies> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli-codegen</artifactId> <version>4.7.6</version> </dependency> </dependencies> <executions> <execution> <id>generate-graalvm-info</id> <goals> <goal>java</goal> </goals> <phase>process-classes</phase> <configuration> <includeProjectDependencies>true</includeProjectDependencies> <classpathScope>test</classpathScope> <executableDependency> <groupId>info.picocli</groupId> <artifactId>picocli-codegen</artifactId> </executableDependency> <mainClass>picocli.codegen.aot.graalvm.JniConfigGenerator</mainClass> <arguments> <argument>org.jline.nativ.JLineLibrary</argument> <argument>-o=target/classes/META-INF/native-image/jlinenative/jni-config.json</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package>org.jline.nativ;-noimport:=true</Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>