reflow-velocity-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.joda.external</groupId> <artifactId>reflow-velocity-tools</artifactId> <version>1.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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.joda.external</groupId> <artifactId>reflow-parent</artifactId> <version>1.2</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>reflow-velocity-tools</artifactId> <name>Reflow Velocity Tools (fork)</name> <description>Velocity tools supporting Reflow Maven skin</description> <dependencies> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-tools</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-decoration-model</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0.4</version> </dependency> <dependency> <!-- jsoup HTML parser library @ http://jsoup.org/ --> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.7.3</version> </dependency> </dependencies> <build> <plugins> <!-- https://issues.apache.org/jira/browse/DOXIASITETOOLS-168 tools.xml has to be at META-INF/maven/site-tools.xml --> <plugin> <groupId>com.coderplus.maven.plugins</groupId> <artifactId>copy-rename-maven-plugin</artifactId> <executions> <execution> <id>copy-tools-xml</id> <phase>process-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <sourceFile>src/main/resources/tools.xml</sourceFile> <destinationFile>${basedir}/target/classes/META-INF/maven/site-tools.xml</destinationFile> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>