schema-xoev-basisdatentypen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.osci</groupId> <artifactId>schema-xoev-basisdatentypen</artifactId> <version>2.4.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>de.osci</groupId> <artifactId>osci-bibliothek-lib</artifactId> <version>2.4.4</version> </parent> <artifactId>schema-xoev-basisdatentypen</artifactId> <properties> <sonar.skip>true</sonar.skip> </properties> <dependencies> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>${jaxb-impl.name}</artifactId> </dependency> </dependencies> <build> <plugins> <!-- XSD --> <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-xjc-plugin</artifactId> <executions> <execution> <id>generate-sources</id> <phase>generate-sources</phase> <goals> <goal>xsdtojava</goal> </goals> <configuration> <xsdOptions> <xsdOption> <xsd>${basedir}/src/main/resources/xoev-basisdatentypen.xsd</xsd> </xsdOption> </xsdOptions> </configuration> </execution> </executions> </plugin> <!-- Quellverzeichnisse --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${basedir}/target/generated/src/main/java</source> </sources> </configuration> </execution> </executions> </plugin> <!-- JAR-Inhalt definieren --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <includes> <include>xoev-basisdatentypen.xsd</include> <include>de/xoev/schemata/basisdatentypen/_1_1/**</include> </includes> </configuration> </plugin> </plugins> </build> </project>