truelicense-obfuscate
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.truelicense</groupId> <artifactId>truelicense-obfuscate</artifactId> <version>2.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (C) 2005-2015 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> <maven>${maven.enforcer.requireMavenVersion}</maven> </prerequisites> <parent> <groupId>net.java.truelicense</groupId> <artifactId>truelicense</artifactId> <version>2.5.0</version> </parent> <artifactId>truelicense-obfuscate</artifactId> <name>TrueLicense @Obfuscate</name> <description> The TrueLicense @Obfuscate module provides core functionality for obfuscating constant string values in Java source and class files. </description> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <proc>none</proc> </configuration> </plugin> <plugin> <groupId>${project.groupId}</groupId> <artifactId>truelicense-maven-plugin</artifactId> <!-- Cannot use the build version for bootstrapping! --> <version>2.4</version> <executions> <execution> <id>generate-main-sources</id> <goals> <goal>generate-main-sources</goal> </goals> </execution> <execution> <id>generate-test-sources</id> <goals> <goal>generate-test-sources</goal> </goals> <configuration> <templateSets> <set> <directory>src/test/scala</directory> <includes> <include>**/*.vtl</include> </includes> </set> </templateSets> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>