pom.xml revision fed8b49941707443c3be9c6feba037246d008ef0
1008N/A<?xml version="1.0" encoding="UTF-8"?>
1277N/A<!--
1008N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
1008N/A *
1008N/A * Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
1008N/A *
1008N/A * The contents of this file are subject to the terms
1008N/A * of the Common Development and Distribution License
1008N/A * (the License). You may not use this file except in
1008N/A * compliance with the License.
1008N/A *
1008N/A * You can obtain a copy of the License at
1008N/A * http://forgerock.org/license/CDDLv1.0.html
1008N/A * See the License for the specific language governing
1008N/A * permission and limitations under the License.
1008N/A *
1008N/A * When distributing Covered Code, include this CDDL
1008N/A * Header Notice in each file and include the License file
1008N/A * at http://forgerock.org/license/CDDLv1.0.html
1008N/A * If applicable, add the following below the CDDL Header,
1008N/A * with the fields enclosed by brackets [] replaced by
1008N/A * your own identifying information:
1008N/A * "Portions Copyrighted [year] [name of copyright owner]"
1008N/A *
1008N/A -->
1008N/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">
1008N/A <modelVersion>4.0.0</modelVersion>
1008N/A
1008N/A <!-- Parent Project -->
1008N/A <parent>
1008N/A <groupId>org.forgerock.openam</groupId>
1008N/A <artifactId>openam-schema</artifactId>
1008N/A <version>12.0.1-SNAPSHOT</version>
1008N/A </parent>
1008N/A
1008N/A <!-- Component Definition -->
1008N/A <name>OpenAM WS Federation Schema</name>
1008N/A <description>OpenAM Schemata Components</description>
1008N/A <artifactId>openam-wsfederation-schema</artifactId>
1008N/A <packaging>jar</packaging>
<!-- Build -->
<build>
<plugins>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<executions>
<execution>
<id>xjc-wsfederation</id>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<extension>true</extension>
</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 WS-Fed Schema</Specification-Title>
<Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
<Specification-Vendor>ForgeRock</Specification-Vendor>
<Implementation-Title>OpenAM WS-Fed 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>
<SVN-Revision>R${svn-revision.revision}</SVN-Revision>
<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>