| 1234567891011121314151617181920212223242526272829303132 |
- <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>
- <artifactId>template</artifactId>
- <name>XDocReport Template Component</name>
- <parent>
- <groupId>fr.opensagres.xdocreport</groupId>
- <artifactId>xdocreport-parent</artifactId>
- <version>1.0.6</version>
- <relativePath>..</relativePath>
- </parent>
- <packaging>pom</packaging>
- <modules>
- <module>fr.opensagres.xdocreport.template</module>
- <!-- XDocReport Template implementation -->
- <module>fr.opensagres.xdocreport.template.freemarker</module>
- <module>fr.opensagres.xdocreport.template.velocity</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>2.2</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.sun.xml.bind</groupId>
- <artifactId>jaxb-impl</artifactId>
- <version>2.2</version>
- <optional>true</optional>
- </dependency>
- </dependencies>
- </project>
|