epo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.northdata.schema</groupId>
<artifactId>epo</artifactId>
<version>2.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.northdata</groupId>
<artifactId>superpom</artifactId>
<version>1.3.0</version>
</parent>
<groupId>com.northdata.schema</groupId>
<artifactId>epo</artifactId>
<version>2.1.0</version>
<name>JAXB Bindings for EPO</name>
<description>JAXB Bindings Specs for European Patent Office</description>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skipTests>true</skipTests>
</properties>
<scm>
<connection>scm:git:git@github.com:northdata/schema-epo.git</connection>
<developerConnection>scm:git:git@github.com:northdata/schema-epo.git</developerConnection>
<url>http://github.com/northdata/schema-epo/tree/master</url>
<tag>HEAD</tag>
</scm>
<url>http://github.com/northdata/schema-epo</url>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<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>${project.build.directory}/generated-sources/rd</source>
<source>${project.build.directory}/generated-sources/ebd</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.evolvedbinary.maven.mojohaus</groupId>
<artifactId>jaxb-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-rd</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<sources>
<source>src/main/resources/dtd/register-documents-v1-3-1.dtd</source>
</sources>
<packageName>com.northdata.schema.epo.rd</packageName>
<outputDirectory>${project.build.directory}/generated-sources/rd</outputDirectory>
<arguments>-dtd</arguments>
<externalEntityProcessing>true</externalEntityProcessing>
</configuration>
</execution>
<execution>
<id>generate-ebd</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<sources>
<source>src/main/resources/dtd/ep-bulletin-v1-5.dtd</source>
</sources>
<packageName>com.northdata.schema.epo.ebd</packageName>
<outputDirectory>${project.build.directory}/generated-sources/ebd</outputDirectory>
<arguments>-dtd</arguments>
<externalEntityProcessing>true</externalEntityProcessing>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>