truelicense-maven-plugin
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.truelicense</groupId> <artifactId>truelicense-maven-plugin</artifactId> <version>2.6.6</version> </dependency>
<?xml version='1.0'?> <!-- ~ Copyright (C) 2005-2017 Schlichtherle IT Services. ~ All rights reserved. Use is subject to license terms. --> <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> <prerequisites> <!-- Versions 3.3.1 and 3.3.3 would fail with a ClassNotFoundException when running the TrueLicense Maven Plugin. See https://jira.codehaus.org/browse/MNG-5787 and https://java.net/jira/browse/TRUELICENSE-87 . --> <maven>3.3.9</maven> </prerequisites> <parent> <groupId>net.java.truelicense</groupId> <artifactId>truelicense</artifactId> <version>2.6.6</version> </parent> <artifactId>truelicense-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>TrueLicense Maven Plugin</name> <description> The TrueLicense Maven Plugin generates source files from Apache Velocity template files or obfuscates constant string values in class files. </description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>truelicense-obfuscate</artifactId> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> </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-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>de.schlichtherle.truezip</groupId> <artifactId>truezip-driver-zip</artifactId> </dependency> <dependency> <groupId>de.schlichtherle.truezip</groupId> <artifactId>truezip-file</artifactId> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-tools</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.5</version> </plugin> </plugins> </reporting> </project>