pom.xml revision f307495b86fff35ba8583abbdade44f9d543a201
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync<?xml version="1.0" encoding="UTF-8"?>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync<!--
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync*
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* Copyright 2011-2015 ForgeRock AS.
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync*
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync* The contents of this file are subject to the terms
e90bc1b0a8fb83acc1c1dc65176f143163cbb1a4vboxsync* of the Common Development and Distribution License
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync* (the License). You may not use this file except in
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync* compliance with the License.
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync*
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync* You can obtain a copy of the License at
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync* http://forgerock.org/license/CDDLv1.0.html
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync* See the License for the specific language governing
c98fb3e16fcd571a790eab772c0c66173d225205vboxsync* permission and limitations under the License.
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync*
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* When distributing Covered Code, include this CDDL
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* Header Notice in each file and include the License file
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* at http://forgerock.org/license/CDDLv1.0.html
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* If applicable, add the following below the CDDL Header,
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* with the fields enclosed by brackets [] replaced by
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* your own identifying information:
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync* "Portions Copyrighted [year] [name of copyright owner]"
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync*
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync-->
4896726d903f56fe43eb13e2ba27ae1d63b8c40evboxsync<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">
4896726d903f56fe43eb13e2ba27ae1d63b8c40evboxsync <modelVersion>4.0.0</modelVersion>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <!-- Parent Project -->
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <parent>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <groupId>org.forgerock.openam</groupId>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <artifactId>openam-schema</artifactId>
67b414aa650cb27688d387c2184f8488d801cd72vboxsync <version>13.0.0-SNAPSHOT</version>
67b414aa650cb27688d387c2184f8488d801cd72vboxsync </parent>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync
67b414aa650cb27688d387c2184f8488d801cd72vboxsync <!-- Component Definition -->
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <name>OpenAM JAXRPC Schema</name>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <description>OpenAM JAXRPC Schema Components</description>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <artifactId>openam-jaxrpc-schema</artifactId>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <packaging>jar</packaging>
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <!-- Build -->
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <build>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <plugins>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <!-- Generate jaxrpc WSDL -->
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <!-- see http://docs.oracle.com/cd/E17802_01/webservices/webservices/docs/1.5/jaxrpc/jaxrpc-tools.html
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync for Documentation on the wscompile tool. -->
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <plugin>
4e46eee5a96078ebec6cb36939b794a391f1ade0vboxsync <groupId>org.apache.maven.plugins</groupId>
4e46eee5a96078ebec6cb36939b794a391f1ade0vboxsync <artifactId>maven-antrun-plugin</artifactId>
4e46eee5a96078ebec6cb36939b794a391f1ade0vboxsync <executions>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <execution>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <id>generate-jaxrpc-wsdl</id>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <phase>generate-sources</phase>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <configuration>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <target name="jaxrpc">
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <property name="build.class.path" refid="maven.compile.classpath" />
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <mkdir dir="${project.build.directory}/classes" />
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <mkdir dir="${project.build.directory}/generated-sources/wscompile" />
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <mkdir dir="${project.build.directory}/unwanted" />
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <java classname="com.sun.xml.rpc.tools.wscompile.Main" fork="true" classpath="${build.class.path}" failonerror="true">
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <arg value="-g" />
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <arg value="-gen:server" />
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <arg value="-keep" />
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <arg value="-d" />
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <arg value="${project.build.directory}/unwanted" />
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <arg value="-s" />
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <arg value="${project.build.directory}/generated-sources/wscompile" />
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <arg value="${project.basedir}/src/main/resources/xml/jaxrpc/config.xml" />
0edd5583e49bb46471ed27200f0fe2fdf00f5ecavboxsync </java>
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync
e06cbb510db6f327856cabc016398e4fda505809vboxsync <move file="${project.build.directory}/unwanted/IdentityManagementServices.wsdl" tofile="${project.build.directory}/classes/jaxrpc/IdentityManagementServices.wsdl" />
e06cbb510db6f327856cabc016398e4fda505809vboxsync
e06cbb510db6f327856cabc016398e4fda505809vboxsync <!-- Clean-up duplicate generated WSDL and Classes -->
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync <delete file="${project.basedir}/IdentityManagementServices.wsdl" />
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync </target>
43b9d660479e358a9b61827b8037ea65268345e9vboxsync </configuration>
43b9d660479e358a9b61827b8037ea65268345e9vboxsync <goals>
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync <goal>run</goal>
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync </goals>
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync </execution>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </executions>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </plugin>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync
84d5d5272edbc1f41f963221b74a7eda71d0e2a2vboxsync <plugin>
48eca14ff165b52c459d7c3090f1f5dba0d1fedbvboxsync <groupId>org.codehaus.mojo</groupId>
48eca14ff165b52c459d7c3090f1f5dba0d1fedbvboxsync <artifactId>build-helper-maven-plugin</artifactId>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <executions>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <execution>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <id>add-source</id>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <phase>generate-sources</phase>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <goals>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <goal>add-source</goal>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </goals>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <configuration>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <sources>
67b414aa650cb27688d387c2184f8488d801cd72vboxsync <source>${project.build.directory}/generated-sources/wscompile</source>
67b414aa650cb27688d387c2184f8488d801cd72vboxsync </sources>
67b414aa650cb27688d387c2184f8488d801cd72vboxsync </configuration>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </execution>
67b414aa650cb27688d387c2184f8488d801cd72vboxsync </executions>
67b414aa650cb27688d387c2184f8488d801cd72vboxsync </plugin>
67b414aa650cb27688d387c2184f8488d801cd72vboxsync
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <plugin>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <groupId>org.apache.maven.plugins</groupId>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <artifactId>maven-jar-plugin</artifactId>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <configuration>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <forceCreation>true</forceCreation>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <archive>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <index>true</index>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <manifest>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <addClasspath>true</addClasspath>
22cf3a5eb5a3cc2ea58e4fe974914e6a32514614vboxsync <classpathPrefix>lib/</classpathPrefix>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </manifest>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <manifestEntries>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <Specification-Title>OpenAM JAXRPC Schema</Specification-Title>
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <Specification-Vendor>ForgeRock</Specification-Vendor>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <Implementation-Title>OpenAM JAXRPC Schema</Implementation-Title>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <Implementation-Version>${project.version} - ${maven.build.timestamp}
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync </Implementation-Version>
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync <Implementation-Vendor>ForgeRock</Implementation-Vendor>
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync <Built-By>${user.name}</Built-By>
607049337dcf359292c82c9372a2c19d9c4cdd2fvboxsync <Build-Jdk>${java.version}</Build-Jdk>
607049337dcf359292c82c9372a2c19d9c4cdd2fvboxsync <Build-Time>${maven.build.timestamp}</Build-Time>
607049337dcf359292c82c9372a2c19d9c4cdd2fvboxsync <Version>${project.version}</Version>
607049337dcf359292c82c9372a2c19d9c4cdd2fvboxsync <Create-On>${maven.build.timestamp}</Create-On>
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync <Revision>${git.short.sha1}</Revision>
10f224d85cd1135f0ca4ee1c1c1a7e15988bed58vboxsync <!-- TODO Add License to Manifest -->
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <License />
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </manifestEntries>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </archive>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </configuration>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </plugin>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <plugin>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <groupId>org.apache.maven.plugins</groupId>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <artifactId>maven-javadoc-plugin</artifactId>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <configuration>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <skip>true</skip>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </configuration>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </plugin>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </plugins>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync </build>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <dependencies>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <dependency>
9e201d78ac6efdd08550263f2e146cdb76e9d49bvboxsync <groupId>org.forgerock.openam</groupId>
<artifactId>openam-federation-library</artifactId>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</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>javax.xml</groupId>
<artifactId>jaxrpc-api</artifactId>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>jaxrpc-impl</artifactId>
</dependency>
<dependency>
<groupId>external</groupId>
<artifactId>webservices-api</artifactId>
</dependency>
</dependencies>
</project>