nisse-plugin3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.maveniverse.maven.plugins</groupId> <artifactId>nisse-plugin3</artifactId> <version>0.4.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2023-2024 Maveniverse Org. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html --> <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>eu.maveniverse.maven.nisse</groupId> <artifactId>nisse</artifactId> <version>0.4.2</version> </parent> <groupId>eu.maveniverse.maven.plugins</groupId> <artifactId>nisse-plugin3</artifactId> <packaging>maven-plugin</packaging> <name>${project.groupId}:${project.artifactId}</name> <properties> <version.maven>3.9.9</version.maven> <version.resolver>1.9.22</version.resolver> <version.maven-plugin-tools>3.15.1</version.maven-plugin-tools> </properties> <dependencies> <!-- Nisse --> <dependency> <groupId>eu.maveniverse.maven.nisse</groupId> <artifactId>core</artifactId> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>eu.maveniverse.maven.nisse.sources</groupId> <artifactId>file-source</artifactId> </dependency> <dependency> <groupId>eu.maveniverse.maven.nisse.sources</groupId> <artifactId>jgit-source</artifactId> </dependency> <dependency> <groupId>eu.maveniverse.maven.nisse.sources</groupId> <artifactId>mvn-source</artifactId> </dependency> <dependency> <groupId>eu.maveniverse.maven.nisse.sources</groupId> <artifactId>os-source</artifactId> </dependency> <!-- Maven --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${version.maven-plugin-tools}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${version.maven}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${version.maven}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.inject</artifactId> <scope>provided</scope> </dependency> <!-- Test --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${version.maven-plugin-tools}</version> <configuration> <goalPrefix>nisse</goalPrefix> <requiredMavenVersion>3.6.3</requiredMavenVersion> <requiredJavaVersion>8</requiredJavaVersion> </configuration> </plugin> </plugins> </build> </project>