- <?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>
- <artifactId>docs</artifactId>
- <groupId>org.ai2l.chaire-logiciel-libre</groupId>
- <version>1.0-SNAPSHOT</version>
- <name>docs</name>
- <properties>
- <source.file></source.file>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>com.agilejava.docbkx</groupId>
- <artifactId>docbkx-maven-plugin</artifactId>
- <version>2.0.11</version>
- <dependencies>
- <dependency>
- <groupId>net.sf.docbook</groupId>
- <artifactId>docbook-xml</artifactId>
- <version>5.0-all</version>
- <classifier>resources</classifier>
- <type>zip</type>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>net.sf.docbook</groupId>
- <artifactId>docbook-xsl</artifactId>
- <version>1.76.1</version>
- <classifier>ns-resources</classifier>
- <type>zip</type>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>net.sf.offo</groupId>
- <artifactId>fop-hyph</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>net.sf.xslthl</groupId>
- <artifactId>xslthl</artifactId>
- <version>2.0.1</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- <executions>
- <!-- -->
- <execution>
- <id>documentation identifier</id>
- <phase>pre-site</phase>
- <goals>
- <!--<goal>generate-html</goal>-->
- <goal>generate-pdf</goal>
- </goals>
- <configuration>
- <!-- per execution configuration -->
- <highlightSource>1</highlightSource>
- <includes>${source.file}</includes>
- <fonts>
- <font>
- <name>Droid Serif</name>
- <style>normal</style>
- <weight>normal</weight>
- <embedFile>src/fonts/ttf-droid/DroidSerif-Regular.ttf</embedFile>
- <metricsFile>src/fonts/ttf-droid/DroidSerif-Regular-metrics.xml</metricsFile>
- </font>
- <font>
- <name>Droid Serif</name>
- <style>italic</style>
- <weight>normal</weight>
- <embedFile>src/fonts/ttf-droid/DroidSerif-Italic.ttf</embedFile>
- <metricsFile>src/fonts/ttf-droid/DroidSerif-Italic-metrics.xml</metricsFile>
- </font>
- <font>
- <name>Droid Serif</name>
- <style>normal</style>
- <weight>bold</weight>
- <embedFile>src/fonts/ttf-droid/DroidSerif-Bold.ttf</embedFile>
- <metricsFile>src/fonts/ttf-droid/DroidSerif-Bold-metrics.xml</metricsFile>
- </font>
- <font>
- <name>Droid Serif</name>
- <style>italic</style>
- <weight>bold</weight>
- <embedFile>src/fonts/ttf-droid/DroidSerif-BoldItalic.ttf</embedFile>
- <metricsFile>src/fonts/ttf-droid/DroidSerif-BoldItalic-metrics.xml</metricsFile>
- </font>
- <font>
- <name>Droid Sans Mono</name>
- <style>normal</style>
- <weight>normal</weight>
- <embedFile>src/fonts/ttf-droid/DroidSansMono.ttf</embedFile>
- <metricsFile>src/fonts/ttf-droid/DroidSansMono-metrics.xml
- </metricsFile>
- </font>
- <font>
- <name>Droid Sans Mono</name>
- <style>italic</style>
- <weight>normal</weight>
- <embedFile>src/fonts/ttf-droid/DroidSansMono.ttf</embedFile>
- <metricsFile>src/fonts/ttf-droid/DroidSansMono-metrics.xml
- </metricsFile>
- </font>
- <font>
- <name>Droid Sans Mono</name>
- <style>normal</style>
- <weight>bold</weight>
- <embedFile>src/fonts/ttf-droid/DroidSansMono.ttf</embedFile>
- <metricsFile>src/fonts/ttf-droid/DroidSansMono-metrics.xml
- </metricsFile>
- </font>
- <font>
- <name>Droid Sans Mono</name>
- <style>italic</style>
- <weight>bold</weight>
- <embedFile>src/fonts/ttf-droid/DroidSansMono.ttf</embedFile>
- <metricsFile>src/fonts/ttf-droid/DroidSansMono-metrics.xml
- </metricsFile>
- </font>
- </fonts>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <!-- shared configuration -->
- <generatedSourceDirectory>${project.build.directory}/docbkx/generated</generatedSourceDirectory>
- <xincludeSupported>true</xincludeSupported>
- <paperType>Letter</paperType>
- <fop1Extensions>1</fop1Extensions>
- <foCustomization>src/docbkx-stylesheet/fo/docbook.xsl</foCustomization>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>public</id>
- <name>Public Repositories</name>
- <url>http://artifacts.chaire-logiciel-libre.uqam.ca/content/groups/public</url>
- </repository>
- </repositories>
- <distributionManagement>
- <repository>
- <id>public</id>
- <name>Chaire Releases</name>
- <url>http://artifacts.chaire-logiciel-libre.uqam.ca/content/repositories/releases/</url>
- </repository>
- <snapshotRepository>
- <id>public</id>
- <name>Chaire Snapshots</name>
- <url>http://artifacts.chaire-logiciel-libre.uqam.ca/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- </project>