ati-ladok3-dto
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.sunet.ati.ladok</groupId> <artifactId>ati-ladok3-dto</artifactId> <version>2.65.2</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>se.sunet.ati</groupId> <artifactId>ati-parent</artifactId> <version>6</version> <relativePath>../ati-parent/pom.xml</relativePath> </parent> <groupId>se.sunet.ati.ladok</groupId> <artifactId>ati-ladok3-dto</artifactId> <version>2.65.2</version> <packaging>bundle</packaging> <name>ATI Ladok 3 Data Transfer Objects</name> <description>Ladok 3 Data Transfer Objects as an OSGi-bundle. Generated from schemas provided by the Ladok 3 project.</description> <url>https://github.com/uppsala-university/ati-ladok3-dto</url> <scm> <connection>scm:git:https://github.com/uppsala-university/ati-ladok3-dto.git</connection> <developerConnection>scm:git:https://github.com/uppsala-university/ati-ladok3-dto.git</developerConnection> <tag>ati-ladok3-dto-2.65.2</tag> <url>https://github.com/uppsala-university/ati-ladok3-dto</url> </scm> <properties> <cxf-xjc.version>3.3.4</cxf-xjc.version> <maven.compiler.release>8</maven.compiler.release> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>2.3.3</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.17.0</version> </dependency> <!-- Implementation javax.xml.bind --> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>2.3.9</version> <scope>runtime</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-xjc-plugin</artifactId> <version>${cxf-xjc.version}</version> <executions> <execution> <id>generate-sources</id> <goals> <goal>xsdtojava</goal> </goals> </execution> </executions> <dependencies> <!-- Getters with default values if given in schema --> <dependency> <groupId>org.apache.cxf.xjcplugins</groupId> <artifactId>cxf-xjc-dv</artifactId> <version>${cxf-xjc.version}</version> </dependency> <!-- Insert toString method for DTOs --> <dependency> <groupId>org.apache.cxf.xjcplugins</groupId> <artifactId>cxf-xjc-ts</artifactId> <version>${cxf-xjc.version}</version> </dependency> </dependencies> <configuration> <xsdOptions> <xsdOption> <!-- Schemas and doc found @ https://www.mit.ladok.se/restdoc/ --> <xsdDir>${basedir}/src/main/resources/</xsdDir> <bindingFile>${basedir}/src/main/xjb/bindings.xml</bindingFile> <extension>true</extension> <extensionArgs> <!-- Use the correct encoding --> <extensionArg>-encoding</extensionArg> <extensionArg>${project.build.sourceEncoding}</extensionArg> <!-- No header, easier to diff --> <extensionArg>-no-header</extensionArg> <!-- No package-info.java files --> <extensionArg>-npa</extensionArg> <!-- Inject code --> <extensionArg>-Xinject-code</extensionArg> <!-- Insert toString method for DTOs --> <extensionArg>-Xts:style:org.apache.commons.lang3.builder.ToStringStyle.MULTI_LINE_STYLE</extensionArg> </extensionArgs> </xsdOption> </xsdOptions> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <!-- Extend/override configuration from parent pom.xml --> <configuration> <instructions> <Export-package>se.ladok.schemas.*</Export-package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <failOnError>false</failOnError> </configuration> </plugin> </plugins> </build> </project>