ojp-java-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.vdv</groupId> <artifactId>ojp-java-model</artifactId> <version>1.0.3.1</version> </dependency>
<!-- ~ Licensed under the EUPL, Version 1.2 or - as soon they will be approved by ~ the European Commission - subsequent versions of the EUPL (the "Licence"); ~ You may not use this work except in compliance with the Licence. ~ You may obtain a copy of the Licence at: ~ ~ https://joinup.ec.europa.eu/software/page/eupl ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the Licence is distributed on an "AS IS" basis, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the Licence for the specific language governing permissions and ~ limitations under the Licence. --> <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>de.vdv</groupId> <artifactId>ojp-java-model</artifactId> <version>1.0.3.1</version> <name>ojp-java-model</name> <description>Generates Java model from OJP xsds using jaxb.</description> <url>https://github.com/bliksemlabs/ojp-java-model</url> <organization> <name>Bliksem Labs B.V.</name> <url>http://www.bliksemlabs.com/</url> </organization> <licenses> <license> <name>EUPL-1.2 with modifications</name> <url>https://joinup.ec.europa.eu/software/page/eupl</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Stefan de Konink</name> <email>stefan@konink.de</email> <organization>Bliksem Labs B.V.</organization> <organizationUrl>http://www.bliksemlabs.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:ssh://git@github.com/bliksemlabs/ojp-java-model.git</connection> <developerConnection>scm:git:ssh://git@github.com/bliksemlabs/ojp-java-model.git</developerConnection> <url>https://github.com/bliksemlabs/ojp-java-model/tree/master</url> <tag>HEAD</tag> </scm> <!-- <distributionManagement> <snapshotRepository> <id>snapshots</id> <name>entur2-snapshots</name> <url>https://entur2.jfrog.io/entur2/libs-snapshot-local</url> </snapshotRepository> </distributionManagement> --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdk.version>1.8</jdk.version> <ojpRepoName>OJP</ojpRepoName> <ojpBranch>master</ojpBranch> <ojpGithubUrl>https://github.com/vdvde/${ojpRepoName}</ojpGithubUrl> <ojpVersion>1.0.3</ojpVersion> <!-- JAXB components versions --> <jakarta-xml-bind.version>4.0.0</jakarta-xml-bind.version> <glassfish-jaxb.version>2.3.5</glassfish-jaxb.version> <jaxb.fluent.api.version>2.1.8</jaxb.fluent.api.version> <jaxb.java.time.adapters.version>1.1.3</jaxb.java.time.adapters.version> <cxf.xjc.plugin.version>4.0.0</cxf.xjc.plugin.version> <cxf-xjc.version>4.0.0</cxf-xjc.version> <xjc.guava.plugin.version>0.3.1</xjc.guava.plugin.version> <!-- Other dependencies versions --> <slf4j.version>1.7.32</slf4j.version> <commons-lang3.version>3.12.0</commons-lang3.version> <!-- Unit test frameworks versions --> <assertj.core.version>3.22.0</assertj.core.version> <junit.version>5.8.2</junit.version> <!-- Maven plugin versions --> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> <maven-exec-plugin.version>1.6.0</maven-exec-plugin.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.3.1</maven-javadoc-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version> <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> <maven-install-plugin.version>2.5.2</maven-install-plugin.version> <maven-site-plugin.version>3.10.0</maven-site-plugin.version> <maven-resources-plugin.version>3.2.0</maven-resources-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version> <jacoco-maven-plugin.version>0.8.7</jacoco-maven-plugin.version> <!-- empty argLine property, the value is set up by Jacoco during unit tests execution --> <argLine/> <!-- GPG configuration for jar signing--> <gpg.executable>gpg</gpg.executable> <gpg.keyname>${env.GPG_KEY_NAME}</gpg.keyname> </properties> <dependencies> <!-- JAXB --> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>${jakarta-xml-bind.version}</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>4.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.migesok</groupId> <artifactId>jaxb-java-time-adapters</artifactId> <version>${jaxb.java.time.adapters.version}</version> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>${glassfish-jaxb.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.cxf.xjc-utils</groupId> <artifactId>cxf-xjc-runtime</artifactId> <version>${cxf-xjc.version}</version> <scope>runtime</scope> </dependency> <!-- Other dependencies --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.core.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <extensions> <!-- maven3 will need wagon-ssh extension in order to be able to release, Using external variant in order to retain keys, etc --> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>2.10</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${maven-exec-plugin.version}</version> <executions> <execution> <id>download-extract-current-version</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <environmentVariables> <VDVDE_REPO>${ojpRepoName}</VDVDE_REPO> <GIT_BRANCH>${ojpVersion}</GIT_BRANCH> <GITHUB_URL>${ojpGithubUrl}</GITHUB_URL> <DESTINATION_PATH>src/main/resources/xsd/${ojpVersion}</DESTINATION_PATH> </environmentVariables> <executable>./bin/download-extract.sh</executable> </configuration> </execution> <execution> <id>replace-hard-coded-id-in-bindings-file</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <arguments> <argument>${ojpVersion}</argument> </arguments> <executable> ./bin/version_updater.sh </executable> </configuration> </execution> <execution> <id>annotation-removal</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <arguments> <argument>${ojpVersion}</argument> </arguments> <executable>./bin/annotation-replacer.sh</executable> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-xjc-plugin</artifactId> <version>${cxf.xjc.plugin.version}</version> <configuration> <extensions> <extension>net.java.dev.jaxb2-commons:jaxb-fluent-api:${jaxb.fluent.api.version}</extension> <extension>org.apache.cxf.xjcplugins:cxf-xjc-ts:${cxf-xjc.version}</extension> </extensions> </configuration> <executions> <execution> <id>generate-sources-for-ojp</id> <phase>generate-sources</phase> <goals> <goal>xsdtojava</goal> </goals> <configuration> <!-- The cxf-xjc-plugin default source root is not following the standard Maven convention: "target/generated-sources/<tool-name>". So we override the default to follow the Maven convention. This makes it easier for other tools like Intellij and Eclipse to auto detect the generated source. --> <sourceRoot>${project.build.directory}/generated-sources/xjc</sourceRoot> <xsdOptions> <xsdOption> <xsd> ${basedir}/src/main/resources/xsd/${ojpVersion}/OJP.xsd </xsd> <extension>true</extension> <bindingFile>bindings.xjb</bindingFile> <extensionArgs> <extensionArg>-Xbug986</extensionArg> <extensionArg>-Xfluent-api</extensionArg> <extensionArg>-Xts:style:org.rutebanken.netex.OmitNullsToStringStyle.INSTANCE </extensionArg> </extensionArgs> </xsdOption> </xsdOptions> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.apache.cxf.xjcplugins</groupId> <artifactId>cxf-xjc-bug986</artifactId> <version>${cxf.xjc.plugin.version}</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>javax.activation-api</artifactId> <version>1.2.0</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> <encoding>UTF-8</encoding> <compilerArgs> <!--arg>-Werror</arg--> <arg>-Xlint:all</arg> </compilerArgs> </configuration> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-javac</artifactId> <version>2.7</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release,sign,!noPublicDeploy</releaseProfiles> <goals>deploy</goals> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>${jdk.version}</version> </requireJavaVersion> <requirePluginVersions/> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <argLine>@{argLine} -Xms500m -Xmx500m -Xss512k</argLine> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>default-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules/> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sign</id> <activation> <activeByDefault>false</activeByDefault> </activation> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <!-- Set this to true and the release will automatically proceed and sync to Central Repository will follow --> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> <profile> <id>sonar</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <jdk.version>11</jdk.version> <sonar-maven-plugin.version>3.9.1.2184</sonar-maven-plugin.version> </properties> <build> <plugins> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>${sonar-maven-plugin.version}</version> </plugin> </plugins> </build> </profile> </profiles> </project>