wms-v_1_1_1
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jvnet.ogc</groupId> <artifactId>wms-v_1_1_1</artifactId> <version>2.6.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>wms-v_1_1_1</artifactId> <packaging>jar</packaging> <name>OGC WMS 1.1.1</name> <parent> <groupId>org.jvnet.ogc</groupId> <artifactId>ogc-dtd-parent</artifactId> <version>2.6.1</version> <relativePath>../../dtd-parent/pom.xml</relativePath> </parent> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-schemas</id> <phase>generate-sources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>ogc-schemas</artifactId> <version>${project.version}</version> <type>jar</type> <overWrite>false</overWrite> <outputDirectory>src/main/resources</outputDirectory> <includes>ogc/wms/1.1.1/**/*.*</includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>concatenate-dtds</id> <phase>generate-sources</phase> <configuration> <target> <concat destfile="src/main/resources/ogc/wms/1.1.1/wms_1_1_1.dtd"> <fileset dir="src/main/resources/ogc/wms/1.1.1" includes="capabilities*.dtd,exception*.dtd,WMS_DescribeLayerResponse.dtd"/> </concat> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <phase>process-sources</phase> <configuration> <target> <delete dir="${basedir}/target/generated-sources/xjc/WMS_1_1_1"/> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <configuration> <schemaIncludes> <value>ogc/wms/1.1.1/wms_1_1_1.dtd</value> </schemaIncludes> </configuration> <executions> <execution> <id>sources</id> <configuration> <generatePackage>net.opengis.wms.v_1_1_1</generatePackage> </configuration> </execution> <execution> <id>scripts</id> <configuration> <generatePackage>WMS_1_1_1</generatePackage> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> </plugins> </build> </project>