native-helper-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fugerit.java</groupId> <artifactId>native-helper-maven-plugin</artifactId> <version>1.4.6</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.fugerit.java</groupId> <artifactId>fj-bom</artifactId> <version>1.6.5</version> <relativePath></relativePath> </parent> <artifactId>native-helper-maven-plugin</artifactId> <version>1.4.6</version> <packaging>maven-plugin</packaging> <name>native-helper-maven-plugin</name> <description>Maven plugin for GraalVM metadata generation.</description> <properties> <maven.compiler.release>11</maven.compiler.release> <fj-core-version>8.6.2</fj-core-version> <native-helper-graalvm-version>${project.version}</native-helper-graalvm-version> <maven-core-version>3.9.6</maven-core-version> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <configuration> <goalPrefix>native-helper</goalPrefix> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven-core-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.fugerit.java</groupId> <artifactId>native-helper-graalvm</artifactId> <version>${native-helper-graalvm-version}</version> </dependency> <dependency> <groupId>org.fugerit.java</groupId> <artifactId>fj-core</artifactId> <version>${fj-core-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <organization> <url>https://www.fugerit.org</url> <name>Fugerit</name> </organization> <url>https://www.fugerit.org/</url> <profiles> <profile> <id>full</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>