pom.xml revision 9a0d99c22f19c5f6c882ec78ea90e6024fbc01e3
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi<?xml version="1.0" encoding="UTF-8"?>
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi<!--
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd * The contents of this file are subject to the terms of the Common Development and
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd * Distribution License (the License). You may not use this file except in compliance with the
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd * License.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd *
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd * specific language governing permission and limitations under the License.
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd *
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd * When distributing Covered Software, include this CDDL Header Notice in each file and include
6ae232055d4d8a97267517c5e50074c2c819941and * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
dc0d8d65d35787d30a275895ccad8d8e1b58a5ednd * Header, with the fields enclosed by brackets [] replaced by your own identifying
6ae232055d4d8a97267517c5e50074c2c819941and * information: "Portions copyright [year] [name of copyright owner]".
e1e8390280254f7f0580d701e583f670643d4f3fnilgun *
e1e8390280254f7f0580d701e583f670643d4f3fnilgun * Copyright 2011-2016 ForgeRock AS.
e1e8390280254f7f0580d701e583f670643d4f3fnilgun-->
e1e8390280254f7f0580d701e583f670643d4f3fnilgun<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>
<!-- Parent Project -->
<parent>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.0.0-SNAPSHOT</version>
</parent>
<!-- Component Definition -->
<name>OpenAM SAML2 Schema</name>
<description>OpenAM SAML2 Schema Components</description>
<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>
-->
</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>