license-maven-plugin-fs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin-fs</artifactId> <version>5.0.0</version> </dependency>
<!-- Copyright (C) 2008-2024 Mycila (mathieu.carbou@gmail.com) Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin-parent</artifactId> <version>5.0.0</version> </parent> <artifactId>license-maven-plugin-fs</artifactId> <packaging>jar</packaging> <name>license-maven-plugin-fs</name> <description>An optional module for license-maven-plugin adding filesystem related functionality</description> <scm> <connection>scm:git:https://github.com/mathieucarbou/license-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:mycila/license-maven-plugin.git</developerConnection> <url>https://github.com/mathieucarbou/license-maven-plugin</url> <tag>v5.0.0</tag> </scm> <distributionManagement> <site> <id>report</id> <url>https://mathieu.carbou.me/license-maven-plugin/reports/${project.version}/${project.artifactId}</url> </site> </distributionManagement> <properties> <jacoco.minimum.coverage>0.50</jacoco.minimum.coverage> </properties> <dependencies> <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> <scope>provided</scope> </dependency> <dependency> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>report</id> <activation> <os> <family>unix</family> </os> </activation> <reporting> <outputDirectory>../docs/reports/${project.version}/${project.artifactId}</outputDirectory> </reporting> </profile> </profiles> </project>