geomajas-layer-geotools-documentation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.geomajas.documentation</groupId> <artifactId>geomajas-layer-geotools-documentation</artifactId> <version>1.7.1</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"> <parent> <groupId>org.geomajas.plugin</groupId> <artifactId>geomajas-plugin-geotools-all</artifactId> <version>1.7.1</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.geomajas.documentation</groupId> <artifactId>geomajas-layer-geotools-documentation</artifactId> <packaging>jdocbook</packaging> <name>Geomajas GeoTools layer documentation (${translation})</name> <description>Geomajas GeoTools layer documentation (${translation})</description> <dependencies> <dependency> <groupId>org.geomajas.documentation</groupId> <artifactId>geomajas-jdocbook-xslt</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.geomajas.documentation</groupId> <artifactId>geomajas-jdocbook-style</artifactId> <version>1.0.0</version> <type>jdocbook-style</type> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>explode-jdocbook-xslt</id> <phase>process-resources</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/resources</outputDirectory> <includeArtifactIds>geomajas-jdocbook-xslt</includeArtifactIds> </configuration> </execution> <execution> <id>explode-gwt-apps</id> <phase>process-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.geomajas</groupId> <artifactId>geomajas-gwt-simple</artifactId> <version>1.7.1</version> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/extract/simple</outputDirectory> </artifactItem> <artifactItem> <groupId>org.geomajas</groupId> <artifactId>geomajas-gwt-example</artifactId> <version>1.7.1</version> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/extract/example</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.geomajas</groupId> <artifactId>geomajas-maven-plugin</artifactId> <version>1.0.3</version> <inherited>false</inherited> <executions> <execution> <id>extract-listings-app</id> <phase>process-resources</phase> <goals> <goal>extract</goal> </goals> <configuration> <sourceDirectory>${project.build.directory}/extract</sourceDirectory> <destinationDirectory>${basedir}/en-GB/listing</destinationDirectory> </configuration> </execution> <execution> <id>extract-listings-src</id> <phase>process-resources</phase> <goals> <goal>extract</goal> </goals> <configuration> <sourceDirectory>${project.build.directory}/..</sourceDirectory> <destinationDirectory>${basedir}/en-GB/listing</destinationDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>remove-listing</id> <phase>clean</phase> <configuration> <tasks> <delete dir="en-GB/listing" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jboss.maven.plugins</groupId> <artifactId>maven-jdocbook-plugin</artifactId> <version>2.0.0</version> <extensions>true</extensions> <configuration> <sourceDocumentName>master.xml</sourceDocumentName> <imageResource> <directory>${basedir}/${translation}</directory> <excludes> <exclude>*.xml</exclude> </excludes> </imageResource> <cssResource> <directory>${basedir}/${translation}</directory> <excludes> <exclude>*.xml</exclude> </excludes> </cssResource> <formats> <format> <formatName>pdf</formatName> <!--stylesheetResource>classpath:/standard/fopdf.xsl</stylesheetResource--> <finalName>Geotools_layer.pdf</finalName> </format> <format> <formatName>html</formatName> <stylesheetResource>file:${project.build.directory}/resources/xslt/org/geomajas/main-html.xsl </stylesheetResource> <finalName>index.html</finalName> </format> <format> <formatName>html_single</formatName> <stylesheetResource> file:${project.build.directory}/resources/xslt/org/geomajas/nochunk-html.xsl </stylesheetResource> <finalName>index.html</finalName> </format> </formats> <options> <xincludeSupported>true</xincludeSupported> <xmlTransformerType>saxon</xmlTransformerType> <!-- needed for uri-resolvers; can be omitted if using 'current' uri scheme --> <!-- could also locate the docbook dependency and inspect its version... --> <docbookVersion>1.72.0</docbookVersion> </options> <sourceDirectory>${basedir}/${translation}</sourceDirectory> </configuration> </plugin> </plugins> </build> <pluginRepositories> <pluginRepository> <id>Geomajas</id> <name>Geomajas repository</name> <url>http://maven.geomajas.org/</url> </pluginRepository> </pluginRepositories> <properties> <translation>en-GB</translation> </properties> </project>