templating
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.ralph-schuster</groupId> <artifactId>templating</artifactId> <version>5.2.3</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>eu.ralph-schuster</groupId> <artifactId>libs</artifactId> <version>5.2.3</version> </parent> <properties> <project.home>https://github.com/technicalguru/rslibs</project.home> </properties> <artifactId>templating</artifactId> <packaging>jar</packaging> <name>${project.groupId}.${project.artifactId}</name> <description>Using Typo3 templates with Java</description> <url>https://github.com/technicalguru/rslibs</url> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>baselib</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <header><![CDATA[<a href="${project.url}" target="_new">Visit the ${project.name} Homepage</a>]]></header> <detectJavaApiLink>false</detectJavaApiLink> </configuration> </plugin> </plugins> </build> </project>