gml-v_3_3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ogc-schemas</groupId> <artifactId>gml-v_3_3</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>gml-v_3_3</artifactId> <packaging>jar</packaging> <name>OGC GML 3.2.1</name> <parent> <groupId>org.ogc-schemas</groupId> <artifactId>ogc-schema-parent</artifactId> <version>5.0.1</version> <relativePath>../../schema-parent/pom.xml</relativePath> </parent> <dependencies> <dependency> <groupId>org.ogc-schemas</groupId> <artifactId>gml-v_3_2</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.w3c-schemas</groupId> <artifactId>xlink-v_1_0</artifactId> </dependency> </dependencies> <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.gml.v_3_3</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.jvnet.jaxb</groupId> <artifactId>jaxb-maven-plugin</artifactId> <configuration> <schemas> <schema> <url>http://schemas.opengis.net/gml/3.3/extdBaseTypes.xsd</url> </schema> <schema> <url>http://schemas.opengis.net/gml/3.3/extdEncRule.xsd</url> </schema> <schema> <url>http://schemas.opengis.net/gml/3.3/geometryCompact.xsd</url> </schema> <schema> <url>http://schemas.opengis.net/gml/3.3/linearRef.xsd</url> </schema> <schema> <url>http://schemas.opengis.net/gml/3.3/linearRefOffset.xsd</url> </schema> <schema> <url>http://schemas.opengis.net/gml/3.3/linearRefOffsetVector.xsd</url> </schema> <schema> <url>http://schemas.opengis.net/gml/3.3/linearRefTowardsReferent.xsd</url> </schema> <schema> <url>http://schemas.opengis.net/gml/3.3/referenceableGrid.xsd</url> </schema> <schema> <url>http://schemas.opengis.net/gml/3.3/tin.xsd</url> </schema> </schemas> <bindings> <binding> <dependencyResource> <groupId>${project.groupId}</groupId> <artifactId>ogc-schemas</artifactId> <resource>ogc/globalBindings.xjb</resource> <version>${project.version}</version> </dependencyResource> </binding> <binding> <dependencyResource> <groupId>${project.groupId}</groupId> <artifactId>gml-v_3_2</artifactId> <resource>gml-v_3_2.jsonix.xjb</resource> <version>${project.version}</version> </dependencyResource> </binding> <binding> <dependencyResource> <groupId>${project.groupId}</groupId> <artifactId>gml-v_3_2</artifactId> <resource>iso19139-v_20070417.ignore.xjb</resource> <version>${project.version}</version> </dependencyResource> </binding> <binding> <dependencyResource> <groupId>org.w3c-schemas</groupId> <artifactId>xlink-v_1_0</artifactId> <resource>xlink-v_1_0.jsonix.xjb</resource> <version>${w3c-schemas.version}</version> </dependencyResource> </binding> </bindings> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-sources</phase> <configuration> <target> <delete dir="${basedir}/target/generated-sources/xjc/net/opengis/gml/v_3_2"/> <!--delete dir="${basedir}/target/generated-sources/xjc" includes="GML_*.*"/--> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> </plugins> </build> </project>