pom.xml revision 0d29d2c9c206eb1652fa951dd55bcc0cfa4b48fe
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 2011-2015 ForgeRock AS.
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>13.0.0-SNAPSHOT</version>
2N/A </parent>
2N/A
2N/A <!-- Component Definition -->
2N/A <name>OpenAM Identity Services Schema</name>
2N/A <description>OpenAM Identity Services Schema Components</description>
2N/A <artifactId>openam-idsvcs-schema</artifactId>
2N/A <packaging>jar</packaging>
2N/A
2N/A <!-- Build -->
2N/A <build>
2N/A <plugins>
2N/A <!-- Generate Identity Services Source Files to prepare for Compilation -->
2N/A <!-- see http://docs.oracle.com/cd/E17802_01/webservices/webservices/docs/1.5/jaxrpc/jaxrpc-tools.html
2N/A for Documentation on the wscompile tool. -->
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-antrun-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <id>generate-idsvcs-source</id>
2N/A <phase>generate-sources</phase>
2N/A <configuration>
2N/A <failOnError>true</failOnError>
2N/A <target name="idsvcs">
2N/A <property name="build.class.path" refid="maven.compile.classpath" />
2N/A
2N/A <copy file="${project.basedir}/src/main/resources/xml/IdentityServices.wsdl" tofile="${project.build.directory}/classes/IdentityServices.wsdl" />
2N/A <mkdir dir="${project.build.directory}/generated-sources/wscompile" />
2N/A <mkdir dir="${project.build.directory}/unwanted" />
2N/A
2N/A <java classname="com.sun.xml.rpc.tools.wscompile.Main" fork="true" classpath="${build.class.path}" failonerror="true">
2N/A <arg value="-g" />
2N/A <arg value="-gen:server" />
2N/A <arg value="-keep" />
2N/A <arg value="-d" />
2N/A <arg value="${project.build.directory}/unwanted" />
2N/A <arg value="-s" />
2N/A <arg value="${project.build.directory}/generated-sources/wscompile" />
2N/A <arg value="${project.basedir}/src/main/resources/xml/IdentityServicesConfig.xml" />
2N/A </java>
2N/A </target>
2N/A </configuration>
2N/A <goals>
2N/A <goal>run</goal>
2N/A </goals>
2N/A </execution>
2N/A </executions>
2N/A </plugin>
2N/A
2N/A <plugin>
2N/A <groupId>org.codehaus.mojo</groupId>
2N/A <artifactId>build-helper-maven-plugin</artifactId>
2N/A <executions>
2N/A <execution>
2N/A <id>add-source</id>
2N/A <phase>generate-sources</phase>
2N/A <goals>
2N/A <goal>add-source</goal>
2N/A </goals>
2N/A <configuration>
2N/A <sources>
2N/A <source>${project.build.directory}/generated-sources/wscompile</source>
2N/A </sources>
2N/A </configuration>
2N/A </execution>
2N/A </executions>
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 Identity Services</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 Identity Services</Implementation-Title>
2N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}
2N/A </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 <Revision>${git.short.sha1}</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
2N/A <plugin>
2N/A <groupId>org.apache.maven.plugins</groupId>
2N/A <artifactId>maven-javadoc-plugin</artifactId>
2N/A <configuration>
2N/A <skip>true</skip>
2N/A </configuration>
2N/A </plugin>
2N/A </plugins>
2N/A </build>
2N/A
2N/A <dependencies>
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>jaxb1-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>javax.xml</groupId>
2N/A <artifactId>jaxrpc-api</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>com.sun.xml.rpc</groupId>
2N/A <artifactId>jaxrpc-spi</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>external</groupId>
2N/A <artifactId>jaxrpc-impl</artifactId>
2N/A </dependency>
2N/A
2N/A <dependency>
2N/A <groupId>javax.mail</groupId>
2N/A <artifactId>mail</artifactId>
2N/A </dependency>
2N/A </dependencies>
2N/A</project>
2N/A
2N/A