pom.xml revision 4b8b489912a1b73758a1f72ef09b9ac7831731e6
669N/A<?xml version="1.0" encoding="UTF-8"?>
2887N/A<!--
683N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
683N/A *
683N/A * Copyright 2011-2015 ForgeRock AS.
683N/A *
683N/A * The contents of this file are subject to the terms
683N/A * of the Common Development and Distribution License
683N/A * (the License). You may not use this file except in
683N/A * compliance with the License.
6982N/A *
6982N/A * You can obtain a copy of the License at
683N/A * http://forgerock.org/license/CDDLv1.0.html
683N/A * See the License for the specific language governing
683N/A * permission and limitations under the License.
683N/A *
6982N/A * When distributing Covered Code, include this CDDL
6982N/A * Header Notice in each file and include the License file
6982N/A * at http://forgerock.org/license/CDDLv1.0.html
6982N/A * If applicable, add the following below the CDDL Header,
683N/A * with the fields enclosed by brackets [] replaced by
683N/A * your own identifying information:
683N/A * "Portions Copyrighted [year] [name of copyright owner]"
683N/A *
3232N/A -->
683N/A<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">
669N/A <modelVersion>4.0.0</modelVersion>
669N/A
669N/A <!-- Parent Project -->
669N/A <parent>
669N/A <groupId>org.forgerock.openam</groupId>
755N/A <artifactId>openam-schema</artifactId>
755N/A <version>13.0.0-SNAPSHOT</version>
755N/A </parent>
755N/A
755N/A <!-- Component Definition -->
755N/A <name>OpenAM SAML2 Schema</name>
755N/A <description>OpenAM SAML2 Schema Components</description>
669N/A <artifactId>openam-saml2-schema</artifactId>
669N/A <packaging>jar</packaging>
669N/A
669N/A <!-- Build -->
669N/A <build>
755N/A <plugins>
755N/A<!--
755N/A <plugin>
755N/A <groupId>org.codehaus.mojo</groupId>
755N/A <artifactId>jaxb2-maven-plugin</artifactId>
755N/A <executions>
755N/A <execution>
755N/A <id>xjc-saml2</id>
755N/A <goals>
755N/A <goal>xjc</goal>
755N/A </goals>
755N/A </execution>
2085N/A </executions>
669N/A <configuration>
785N/A <extension>true</extension>
669N/A <schemaFiles>
669N/A entity-config-schema.xsd,
669N/A saml-schema-assertion-2.0.xsd,
669N/A saml-schema-metadata-2.0.xsd,
669N/A schema.xsd,
669N/A sstc-saml-metadata-ext-query.xsd,
669N/A sstc-saml-metadata-x509-query.xsd,
669N/A sstc-metadata-attr.xsd,
669N/A sstc-saml-attribute-ext.xsd,
669N/A sstc-saml-idp-discovery.xsd
669N/A </schemaFiles>
669N/A </configuration>
669N/A </plugin>
785N/A-->
785N/A <plugin>
669N/A <groupId>org.apache.maven.plugins</groupId>
669N/A <artifactId>maven-jar-plugin</artifactId>
669N/A <configuration>
669N/A <archive>
669N/A <index>true</index>
669N/A <manifest>
669N/A <addClasspath>true</addClasspath>
669N/A <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>