truelicense-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.truelicense</groupId> <artifactId>truelicense-maven-plugin</artifactId> <version>2.6.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <parent> <artifactId>truelicense</artifactId> <groupId>net.java.truelicense</groupId> <version>2.6.2</version> </parent> <modelVersion>4.0.0</modelVersion> <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> <prerequisites> <maven>${maven.enforcer.requireMavenVersion}</maven> </prerequisites> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <artifactSet> <includes> <include>org.slf4j:slf4j-api</include> </includes> </artifactSet> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.java.truelicense</groupId> <artifactId>truelicense-obfuscate</artifactId> <version>2.6.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>5.0.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.0.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.0.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>de.schlichtherle.truezip</groupId> <artifactId>truezip-driver-zip</artifactId> <version>7.7.8</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>bcprov-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>de.schlichtherle.truezip</groupId> <artifactId>truezip-file</artifactId> <version>7.7.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-tools</artifactId> <version>2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.19</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.11</artifactId> <version>2.2.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>scala-library</artifactId> <groupId>org.scala-lang</groupId> </exclusion> <exclusion> <artifactId>scala-reflect</artifactId> <groupId>org.scala-lang</groupId> </exclusion> <exclusion> <artifactId>scala-xml_2.11</artifactId> <groupId>org.scala-lang.modules</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.scalacheck</groupId> <artifactId>scalacheck_2.11</artifactId> <version>1.12.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>scala-parser-combinators_2.11</artifactId> <groupId>org.scala-lang.modules</groupId> </exclusion> <exclusion> <artifactId>test-interface</artifactId> <groupId>org.scala-sbt</groupId> </exclusion> <exclusion> <artifactId>scala-library</artifactId> <groupId>org.scala-lang</groupId> </exclusion> </exclusions> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.4</version> </plugin> </plugins> </reporting> <properties> <virtuallyProvided>compile</virtuallyProvided> </properties> </project>