sld-v_1_0_0-schema
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jvnet.ogc</groupId> <artifactId>sld-v_1_0_0-schema</artifactId> <version>1.1.0</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> <groupId>org.jvnet.ogc</groupId> <artifactId>sld-v_1_0_0-schema</artifactId> <packaging>jar</packaging> <name>OGC SLD Schema 1.0.0</name> <parent> <groupId>org.jvnet.ogc</groupId> <artifactId>sld-v_1_0_0</artifactId> <version>1.1.0</version> <relativePath>../pom.xml</relativePath> </parent> <dependencies> <dependency> <groupId>org.jvnet.jaxb2_commons</groupId> <artifactId>jaxb2-basics-runtime</artifactId> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> </dependency> <dependency> <groupId>org.jvnet.ogc</groupId> <artifactId>gml-v_2_1_2-schema</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jvnet.ogc</groupId> <artifactId>filter-v_1_0_0-schema</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <configuration> <schemaIncludes> <value>sld/*/StyledLayerDescriptor.xsd</value> <value>filter/*/filter.xsd</value> <value>gml/*/*.xsd</value> </schemaIncludes> <episodes> <episode> <groupId>org.jvnet.ogc</groupId> <artifactId>gml-v_2_1_2-schema</artifactId> </episode> <episode> <groupId>org.jvnet.ogc</groupId> <artifactId>filter-v_1_0_0-schema</artifactId> </episode> </episodes> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-sources</phase> <configuration> <tasks> <delete dir="${basedir}/target/generated-sources/xjc/net/opengis/ogc"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>