template-1.0.6.pom 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <artifactId>template</artifactId>
  4. <name>XDocReport Template Component</name>
  5. <parent>
  6. <groupId>fr.opensagres.xdocreport</groupId>
  7. <artifactId>xdocreport-parent</artifactId>
  8. <version>1.0.6</version>
  9. <relativePath>..</relativePath>
  10. </parent>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>fr.opensagres.xdocreport.template</module>
  14. <!-- XDocReport Template implementation -->
  15. <module>fr.opensagres.xdocreport.template.freemarker</module>
  16. <module>fr.opensagres.xdocreport.template.velocity</module>
  17. </modules>
  18. <dependencies>
  19. <dependency>
  20. <groupId>javax.xml.bind</groupId>
  21. <artifactId>jaxb-api</artifactId>
  22. <version>2.2</version>
  23. <optional>true</optional>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sun.xml.bind</groupId>
  27. <artifactId>jaxb-impl</artifactId>
  28. <version>2.2</version>
  29. <optional>true</optional>
  30. </dependency>
  31. </dependencies>
  32. </project>