encoding
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>uk.org.retep.tools</groupId>
<artifactId>encoding</artifactId>
<version>10.6</version>
</dependency><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>
<groupId>uk.org.retep.tools</groupId>
<artifactId>retepTools</artifactId>
<version>10.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>uk.org.retep.tools</groupId>
<artifactId>encoding</artifactId>
<version>10.6</version>
<packaging>jar</packaging>
<name>retepTools Encoding</name>
<dependencies>
<dependency>
<groupId>uk.org.retep.tools</groupId>
<artifactId>cluster</artifactId>
<version>10.6</version>
</dependency>
<dependency>
<groupId>uk.org.retep.tools</groupId>
<artifactId>collections</artifactId>
<version>10.6</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Generate the source for the StringPrep tables -->
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<properties>
<package>uk.org.retep.util.encoding.stringprep.tables</package>
</properties>
<scriptpath>
<element>${basedir}/src/main/script</element>
</scriptpath>
<source>
new RFC3454( project )
new RFC3920( project )
</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-groovy</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/groovy</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-groovy-tests</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/tests</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>