dss-ext11-jaxb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.swedenconnect.schemas.csig</groupId> <artifactId>dss-ext11-jaxb</artifactId> <version>3.0.3</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>se.swedenconnect.schemas.csig</groupId> <artifactId>dss-ext11-jaxb</artifactId> <packaging>jar</packaging> <parent> <groupId>se.swedenconnect.schemas</groupId> <artifactId>csig-schemas-parent</artifactId> <version>3.0.3</version> </parent> <name>Sweden Connect Schemas :: DSS extensions 1.1 JAXB</name> <description>JAXB project for DSS extensions 1.1</description> <url>https://github.com/swedenconnect/schemas</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/swedenconnect/schemas.git</connection> <developerConnection>scm:git:https://github.com/swedenconnect/schemas.git</developerConnection> <url>https://github.com/swedenconnect/schemas/tree/master</url> </scm> <developers> <developer> <name>Martin Lindström</name> <email>martin@idsec.se</email> <organization>IDsec Solutions AB</organization> <organizationUrl>https://www.idsec.se</organizationUrl> </developer> <developer> <name>Stefan Santesson</name> <email>stefan@idsec.se</email> <organization>IDsec Solutions AB</organization> <organizationUrl>https://www.idsec.se</organizationUrl> </developer> </developers> <properties> </properties> <dependencies> <dependency> <groupId>se.swedenconnect.schemas</groupId> <artifactId>saml-jaxb</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>se.swedenconnect.schemas</groupId> <artifactId>oasis-dss-jaxb</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jvnet.jaxb</groupId> <artifactId>jaxb-maven-plugin</artifactId> <goals> <goal>generate</goal> </goals> <executions> <execution> <id>generate-api</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <episodes> <episode> <groupId>se.swedenconnect.schemas</groupId> <artifactId>xmlsec-jaxb-workaround</artifactId> <version>${project.version}</version> </episode> <episode> <groupId>se.swedenconnect.schemas</groupId> <artifactId>saml-jaxb</artifactId> </episode> <episode> <groupId>se.swedenconnect.schemas</groupId> <artifactId>oasis-dss-jaxb</artifactId> </episode> </episodes> <schemaIncludes> <schemaInclude>EidCentralSigDssExt-1.1.2.xsd</schemaInclude> </schemaIncludes> <bindingIncludes>dss-ext.xjb</bindingIncludes> <catalog>${basedir}/src/main/resources/dss-ext.cat</catalog> </configuration> </execution> </executions> </plugin> <!-- XJC has a bug where it generates an ObjectFactory class for imported code. This will clash since there is already such a class in place (from the dependency), so we delete the generated packages. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-sources</phase> <configuration> <target> <delete dir="${project.build.directory}/generated-sources/xjc/se/swedenconnect/schemas/saml_2_0/assertion"/> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>