pom.xml revision 8234871989c7c90b9c72dcc8b32d60d274ee7b77
2N/A<?xml version="1.0" encoding="UTF-8"?>
2N/A<!--
2N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2N/A *
2N/A * Copyright (c) 2011-2013 ForgeRock AS. All Rights Reserved
2N/A *
2N/A * The contents of this file are subject to the terms
2N/A * of the Common Development and Distribution License
2N/A * (the License). You may not use this file except in
2N/A * compliance with the License.
2N/A *
2N/A * You can obtain a copy of the License at
2N/A * http://forgerock.org/license/CDDLv1.0.html
2N/A * See the License for the specific language governing
2N/A * permission and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL
2N/A * Header Notice in each file and include the License file
2N/A * at http://forgerock.org/license/CDDLv1.0.html
2N/A * If applicable, add the following below the CDDL Header,
2N/A * with the fields enclosed by brackets [] replaced by
2N/A * your own identifying information:
2N/A * "Portions Copyrighted [year] [name of copyright owner]"
2N/A *
2N/A -->
2N/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">
2N/A <modelVersion>4.0.0</modelVersion>
2N/A
2N/A <!-- Parent Project -->
2N/A <parent>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-schema</artifactId>
2N/A <version>11.0.0-RC2</version>
2N/A </parent>
2N/A
2N/A <!-- Component Definition -->
2N/A <name>OpenAM Liberty Schema</name>
2N/A <description>OpenAM Liberty Schema Components</description>
2N/A <artifactId>openam-liberty-schema</artifactId>
2N/A <packaging>jar</packaging>
2N/A
2N/A <!-- Build -->
2N/A <build>
2N/A <plugins>
2N/A<!--
2N/A <plugin>
2N/A <groupId>org.codehaus.mojo</groupId>
2N/A <artifactId>jaxb2-maven-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <id>xjc-liberty</id>
2N/A <goals>
2N/A <goal>xjc</goal>
2N/A </goals>
2N/A </execution>
2N/A </executions>
2N/A <configuration>
2N/A <extension>true</extension>
2N/A <nv>true</nv>
2N/A <schemaFiles>
2N/A lib-id-sis-pp.xsd,
2N/A lib-arch-metadata.xsd,
2N/A idff-entity-config-schema.xsd,
2N/A lib-arch-disco-svc.xsd,
2N/A lib-arch-interact-svc.xsd,
2N/A lib-arch-paos.xsd,
2N/A lib-arch-soap-binding.xsd,
2N/A lib-arch-security-fmwk.xsd,
2N/A secext.xsd,
2N/A discoentry.xsd,
2N/A ppextension.xsd,
2N/A lib-idwsf-authn-svc.xsd,
2N/A liberty-idwsf-disco-svc-v1.1.xsd,
2N/A liberty-idwsf-soap-binding-v1.1.xsd
2N/A </schemaFiles>
2N/A </configuration>
2N/A </plugin>
2N/A-->
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-jar-plugin</artifactId>
2N/A <configuration>
2N/A <archive>
2N/A <index>true</index>
2N/A <manifest>
2N/A <addClasspath>true</addClasspath>
2N/A <classpathPrefix>lib/</classpathPrefix>
2N/A </manifest>
2N/A <manifestEntries>
2N/A <Specification-Title>OpenAM Liberty Schema</Specification-Title>
2N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
2N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
2N/A <Implementation-Title>OpenAM Liberty Schema</Implementation-Title>
2N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
2N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
2N/A <Built-By>${user.name}</Built-By>
2N/A <Build-Jdk>${java.version}</Build-Jdk>
2N/A <Build-Time>${maven.build.timestamp}</Build-Time>
2N/A <Version>${project.version}</Version>
2N/A <Create-On>${maven.build.timestamp}</Create-On>
2N/A <SVN-Revision>R${svn-revision.revision}</SVN-Revision>
2N/A <!-- TODO Add License to Manifest -->
2N/A <License />
2N/A </manifestEntries>
2N/A </archive>
2N/A </configuration>
2N/A </plugin>
2N/A </plugins>
2N/A </build>
2N/A
2N/A
2N/A <dependencies>
2N/A <dependency>
2N/A <groupId>org.forgerock.openam</groupId>
2N/A <artifactId>openam-shared</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>javax.xml.bind</groupId>
2N/A <artifactId>jaxb-api</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.xml.bind</groupId>
2N/A <artifactId>jaxb-impl</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.xml.bind</groupId>
2N/A <artifactId>jaxb-libs</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.xml.bind</groupId>
2N/A <artifactId>jaxb-xjc</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.msv.datatype.xsd</groupId>
2N/A <artifactId>xsdlib</artifactId>
2N/A </dependency>
2N/A </dependencies>
2N/A</project>
2N/A
2N/A