META-INF.maven.net.truelicense.truelicense-maven-plugin.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truelicense-maven-plugin Show documentation
Show all versions of truelicense-maven-plugin Show documentation
The TrueLicense Maven Plugin generates source files from Apache
Velocity template files or obfuscates constant string values in class
files.
<?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.truelicense</groupId> <artifactId>truelicense</artifactId> <version>3.0.0</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>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> <configuration> <helpPackageName>net.truelicense.maven.plugin.help</helpPackageName> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.5</version> </plugin> </plugins> </reporting> </project>