pom.xml revision 5f4c713b97bcf3ebeb84b0a3e3099a99795bcccb
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange<?xml version="1.0" encoding="UTF-8"?>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange<!--
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange *
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * Copyright 2011-2015 ForgeRock AS.
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange *
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * The contents of this file are subject to the terms
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * of the Common Development and Distribution License
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * (the License). You may not use this file except in
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * compliance with the License.
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange *
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * You can obtain a copy of the License at
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * http://forgerock.org/license/CDDLv1.0.html
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * See the License for the specific language governing
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * permission and limitations under the License.
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange *
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * When distributing Covered Code, include this CDDL
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * Header Notice in each file and include the License file
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * at http://forgerock.org/license/CDDLv1.0.html
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * If applicable, add the following below the CDDL Header,
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * with the fields enclosed by brackets [] replaced by
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * your own identifying information:
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange * "Portions Copyrighted [year] [name of copyright owner]"
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange *
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange -->
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange<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">
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <modelVersion>4.0.0</modelVersion>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <!-- Parent Project -->
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <parent>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <groupId>org.forgerock.openam</groupId>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <artifactId>openam-schema</artifactId>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <version>13.0.0</version>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange </parent>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <!-- Component Definition -->
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <name>OpenAM SAML2 Schema</name>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <description>OpenAM SAML2 Schema Components</description>
1d9290e729b7cd9a6f666432934fd890a9766fbdChristoph Lange <artifactId>openam-saml2-schema</artifactId>
<packaging>jar</packaging>
<!-- Build -->
<build>
<plugins>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<executions>
<execution>
<id>xjc-saml2</id>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<extension>true</extension>
<schemaFiles>
entity-config-schema.xsd,
saml-schema-assertion-2.0.xsd,
saml-schema-metadata-2.0.xsd,
schema.xsd,
sstc-saml-metadata-ext-query.xsd,
sstc-saml-metadata-x509-query.xsd,
sstc-metadata-attr.xsd,
sstc-saml-attribute-ext.xsd,
sstc-saml-idp-discovery.xsd
</schemaFiles>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
</manifest>
<manifestEntries>
<Specification-Title>OpenAM SAML2 Schema</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM SAML2 Schema</Implementation-Title>
<Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
<Implementation-Vendor>ForgeRock</Implementation-Vendor>
<Built-By>${user.name}</Built-By>
<Build-Jdk>${java.version}</Build-Jdk>
<Build-Time>${maven.build.timestamp}</Build-Time>
<Version>${project.version}</Version>
<Create-On>${maven.build.timestamp}</Create-On>
<Revision>${git.short.sha1}</Revision>
<!-- TODO Add License to Manifest -->
<License />
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-shared</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb1-impl</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-libs</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
</dependency>
</dependencies>
</project>