wmsc-v_1_1_1
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ogc-schemas</groupId>
<artifactId>wmsc-v_1_1_1</artifactId>
<version>5.0.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>wmsc-v_1_1_1</artifactId>
<packaging>jar</packaging>
<name>OGC WMSC 1.1.1</name>
<parent>
<groupId>org.ogc-schemas</groupId>
<artifactId>ogc-dtd-parent</artifactId>
<version>5.0.1</version>
<relativePath>../../dtd-parent/pom.xml</relativePath>
</parent>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.ogc_schemas.wmsc.v_1_1_1</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<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>geoserver/wmsc/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/geoserver/wmsc/1.1.1/wmsc_1_1_1.dtd">
<fileset dir="src/main/resources/geoserver/wmsc/1.1.1" includes="capabilities_1_1_1.dtd,VendorSpecificCapabilities.dtd,exception_1_1_1.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/WMSC_1_1_1"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb-maven-plugin</artifactId>
<configuration>
<schemaIncludes>
<value>geoserver/wmsc/1.1.1/wmsc_1_1_1.dtd</value>
</schemaIncludes>
</configuration>
<executions>
<execution>
<id>sources</id>
<configuration>
<generatePackage>net.opengis.wmsc.v_1_1_1</generatePackage>
</configuration>
</execution>
<execution>
<id>scripts</id>
<configuration>
<generatePackage>WMSC_1_1_1</generatePackage>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>