getting-started
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.glassfish.metro</groupId> <artifactId>getting-started</artifactId> <version>4.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 1997, 2023 Oracle and/or its affiliates. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v. 1.0, which is available at http://www.eclipse.org/org/documents/edl-v10.php. SPDX-License-Identifier: BSD-3-Clause --> <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> <parent> <artifactId>docs</artifactId> <groupId>org.glassfish.metro</groupId> <version>4.0.4</version> </parent> <artifactId>getting-started</artifactId> <packaging>pom</packaging> <name>Metro Getting Started</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>process-entities</id> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <echo message="Preparing char entities"/> <mkdir dir="${src.dir}"/> <copy todir="${src.dir}"> <fileset dir="${project.basedir}/src/docbook" excludes="**/samples/**"/> </copy> <copy todir="${project.build.directory}/docbook/style"> <fileset dir="${src.dir}/style"/> </copy> <copy todir="${project.build.directory}/docbook/icons"> <fileset dir="${src.dir}/icons"/> </copy> <mkdir dir="${project.build.directory}/docbook/download"/> <macrodef name="java-bundle"> <attribute name="name"/> <sequential> <zip destfile="${project.build.directory}/docbook/download/@{name}.zip" basedir="${project.basedir}/src/docbook/samples/" includes="@{name}/**"/> </sequential> </macrodef> <java-bundle name="csclient"/> <java-bundle name="wsit-enabled-fromjava"/> <java-bundle name="wsit-enabled-fromwsdl"/> <java-bundle name="wsit-jaxws-fromjava" /> <java-bundle name="wsit-jaxws-fromwsdl" /> <java-bundle name="wsit-external-metadata" /> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.agilejava.docbkx</groupId> <artifactId>docbkx-maven-plugin</artifactId> <configuration> <xincludeSupported>true</xincludeSupported> <sourceDirectory>${src.dir}</sourceDirectory> <targetDirectory>${project.build.directory}/docbook</targetDirectory> <htmlStylesheet>style/documentation.css</htmlStylesheet> <htmlCustomization>${basedir}/src/main/docbook/stylesheet/htmlCustomizations.xsl</htmlCustomization> <foCustomization>${basedir}/src/main/docbook/stylesheet/foCustomizations.xsl</foCustomization> <partAutolabel>true</partAutolabel> <sectionAutolabel>true</sectionAutolabel> <sectionLabelIncludesComponentLabel>true</sectionLabelIncludesComponentLabel> <useExtensions>true</useExtensions> <linenumberingExtension>true</linenumberingExtension> <linenumberingEveryNth>1</linenumberingEveryNth> <calloutsExtension>true</calloutsExtension> <calloutGraphics>true</calloutGraphics> <highlightSource>true</highlightSource> <highlightDefaultLanguage>true</highlightDefaultLanguage> <htmlLongdesc>false</htmlLongdesc> <keepRelativeImageUris>true</keepRelativeImageUris> </configuration> <executions> <execution> <id>Single page PDF</id> <goals> <goal>generate-pdf</goal> </goals> <configuration> <includes>getting-started.xml</includes> <highlightSource>false</highlightSource> </configuration> <phase>package</phase> </execution> <execution> <id>Single page HTML</id> <goals> <goal>generate-html</goal> </goals> <configuration> <includes>getting-started.xml</includes> </configuration> <phase>package</phase> </execution> <execution> <id>Multiple HTML pages</id> <goals> <goal>generate-html</goal> </goals> <configuration> <includes>index.xml</includes> <chunkedOutput>true</chunkedOutput> <chunkSectionDepth>0</chunkSectionDepth> <useIdAsFilename>true</useIdAsFilename> </configuration> <phase>package</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/assembly/docbook.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <properties> <assembly.directory>${project.build.directory}/assembly</assembly.directory> <src.dir>${basedir}/target/gen-src</src.dir> <javanet.repository.id>snapshots</javanet.repository.id> <www.repository.url>${www.gettingstarted.scm.connection.url}</www.repository.url> <www.upload.dir>${project.build.directory}/www/getting-started</www.upload.dir> </properties> </project>