pom.xml revision 252bcf7eecdcc35b79b7c6c4e5525234660cceb2
3853N/A<?xml version="1.0" encoding="UTF-8"?>
3853N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3853N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3853N/A <modelVersion>4.0.0</modelVersion>
3853N/A
3853N/A <!--
3853N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3853N/A *
3853N/A * Copyright (c) 2011 ForgeRock AS. All Rights Reserved
3853N/A *
3853N/A * The contents of this file are subject to the terms
3853N/A * of the Common Development and Distribution License
3853N/A * (the License). You may not use this file except in
3853N/A * compliance with the License.
3853N/A *
3853N/A * You can obtain a copy of the License at
3853N/A * http://forgerock.org/license/CDDLv1.0.html
3853N/A * See the License for the specific language governing
3853N/A * permission and limitations under the License.
3853N/A *
3853N/A * When distributing Covered Code, include this CDDL
3853N/A * Header Notice in each file and include the License file
3853N/A * at http://forgerock.org/license/CDDLv1.0.html
3853N/A * If applicable, add the following below the CDDL Header,
5027N/A * with the fields enclosed by brackets [] replaced by
3853N/A * your own identifying information:
3853N/A * "Portions Copyrighted [year] [name of copyright owner]"
3853N/A *
3853N/A -->
4500N/A
3853N/A <!-- Parent Project -->
3853N/A <parent>
3853N/A <groupId>org.forgerock</groupId>
3853N/A <artifactId>openam</artifactId>
3853N/A <version>10.1.0-SNAPSHOT</version>
3853N/A </parent>
3853N/A
3853N/A <!-- Component Definition -->
3853N/A <name>OpenAM Common Test Suite</name>
3853N/A <description>OpenAM Common TEST Suite
3853N/A </description>
3853N/A <artifactId>openam-test</artifactId>
3853N/A <version>10.1.0-SNAPSHOT</version>
3853N/A <packaging>jar</packaging>
3853N/A <organization>
3853N/A <name>ForgeRock</name>
3853N/A <url>http://www.forgerock.com</url>
4294N/A </organization>
4294N/A
3853N/A <!-- Build -->
3853N/A <build>
3853N/A <plugins>
3853N/A
3853N/A <plugin>
3853N/A <inherited>true</inherited>
3853N/A <groupId>org.apache.maven.plugins</groupId>
3853N/A <artifactId>maven-compiler-plugin</artifactId>
3853N/A <configuration>
3853N/A <source>${java.source.version}</source>
3853N/A <target>${java.target.version}</target>
3853N/A <encoding>UTF-8</encoding>
4500N/A </configuration>
3853N/A </plugin>
3853N/A
3853N/A <!-- Surefire Tests -->
3853N/A <plugin>
3853N/A <groupId>org.apache.maven.plugins</groupId>
3853N/A <artifactId>maven-surefire-plugin</artifactId>
3853N/A <configuration>
3853N/A <systemPropertyVariables>
3853N/A <templateLoaderPath>${notification.template.path}</templateLoaderPath>
3853N/A </systemPropertyVariables>
4136N/A <excludes>
3853N/A <exclude>**/IT_*</exclude>
3853N/A </excludes>
3853N/A </configuration>
3853N/A </plugin>
3853N/A
3853N/A <plugin>
3853N/A <groupId>org.apache.maven.plugins</groupId>
3853N/A <artifactId>maven-jar-plugin</artifactId>
3853N/A <executions>
3853N/A <execution>
3853N/A <id>test-jar</id>
3853N/A <phase>package</phase>
5085N/A <goals>
3853N/A <goal>test-jar</goal>
3853N/A </goals>
3853N/A </execution>
3853N/A </executions>
3853N/A </plugin>
3853N/A
4500N/A </plugins>
3884N/A
3884N/A <testResources>
4500N/A <testResource>
4500N/A <filtering>false</filtering>
3853N/A <directory>src/test/resources</directory>
3853N/A <includes>
3853N/A <include>**/*</include>
4500N/A </includes>
4500N/A </testResource>
3853N/A </testResources>
3853N/A
3853N/A </build>
3853N/A
3853N/A <dependencies>
3853N/A
3853N/A <dependency>
3853N/A <groupId>org.forgerock</groupId>
3853N/A <artifactId>openam-core</artifactId>
4294N/A <version>10.1.0-SNAPSHOT</version>
4294N/A </dependency>
4294N/A
3853N/A <dependency>
3853N/A <groupId>org.testng</groupId>
3853N/A <artifactId>testng</artifactId>
3853N/A <scope>test</scope>
3853N/A </dependency>
3853N/A
3853N/A </dependencies>
3853N/A
3858N/A</project>
3858N/A