Merge "Adding release notes for AAA, GBP, SNMP4SDN and SNBI"
[docs.git] / manuals / glossary / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4   <parent>
5     <groupId>org.opendaylight.docs</groupId>
6     <artifactId>manuals</artifactId>
7     <version>0.1.0-SNAPSHOT</version>
8     <relativePath>../pom.xml</relativePath>
9   </parent>
10   <modelVersion>4.0.0</modelVersion>
11   <artifactId>glossary</artifactId>
12   <name>OpenDaylight Docs - Manuals - Glossary</name>
13   <properties>
14     <!-- This is set by Jenkins according to the branch. -->
15     <release.path.name>local</release.path.name>
16     </properties>
17   <!-- ################################################ -->
18   <!-- USE "mvn clean generate-sources" to run this POM -->
19   <!-- ################################################ -->
20   <build>
21     <resources>
22       <resource>
23         <directory>target/docbkx/pdf</directory>
24         <excludes>
25           <exclude>**/*.fo</exclude>
26         </excludes>
27       </resource>
28     </resources>
29     <plugins>
30       <plugin>
31         <groupId>com.inocybe.api</groupId>
32         <artifactId>sdndocs-maven-plugin</artifactId>
33         <!-- version is set in ../pom.xml file -->
34         <executions>
35           <execution>
36             <id>generate-webhelp</id>
37             <goals>
38               <goal>generate-webhelp</goal>
39             </goals>
40             <phase>generate-sources</phase>
41             <configuration>
42               <!-- These parameters only apply to webhelp -->
43               <enableDisqus>0</enableDisqus>
44               <enableGoogleAnalytics>1</enableGoogleAnalytics>
45               <googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
46               <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
47               <webhelpIncludeSearchTab>false</webhelpIncludeSearchTab>
48               <chapterAutolabel>0</chapterAutolabel>
49               <chunkFirstSections>0</chunkFirstSections>
50               <sectionAutolabel>0</sectionAutolabel>
51               <sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
52               <webhelpDirname>glossary</webhelpDirname>
53             </configuration>
54           </execution>
55         </executions>
56         <configuration>
57           <!-- These parameters apply to pdf and webhelp -->
58           <xincludeSupported>true</xincludeSupported>
59                 <glossaryCollection>glossary-terms.xml</glossaryCollection>
60           <sourceDirectory>.</sourceDirectory>
61           <includes>
62             opendaylight-glossary.xml
63           </includes>
64           <canonicalUrlBase>http://docs.opendaylight.org/glossary/content/</canonicalUrlBase>
65           <branding>opendaylight</branding>
66         </configuration>
67       </plugin>
68     </plugins>
69   </build>
70 </project>