pom.xml revision 27b2ac15d8015fcdd3a940b10e788f408903670e
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
~
~ Copyright (c) 2011-2012 ForgeRock AS. All Rights Reserved
~
~ The contents of this file are subject to the terms
~ of the Common Development and Distribution License
~ (the License). You may not use this file except in
~ compliance with the License.
~
~ You can obtain a copy of the License at
~ http://forgerock.org/license/CDDLv1.0.html
~ See the License for the specific language governing
~ permission and limitations under the License.
~
~ When distributing Covered Code, include this CDDL
~ Header Notice in each file and include the License file
~ at http://forgerock.org/license/CDDLv1.0.html
~ If applicable, add the following below the CDDL Header,
~ with the fields enclosed by brackets [] replaced by
~ your own identifying information:
~ "Portions Copyrighted [year] [name of copyright owner]"
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>openidm-ui-ria</artifactId>
<groupId>org.forgerock.openidm</groupId>
<version>2.1.0-SNAPSHOT</version>
</parent>
<artifactId>openidm-ui-ria-libs</artifactId>
<name>OpenIDM RIA Web UI Libs</name>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.savage7.maven.plugins</groupId>
<artifactId>maven-external-dependency-plugin</artifactId>
<version>0.5</version>
<configuration>
<stagingDirectory>
${project.build.directory}/deps/
</stagingDirectory>
<artifactItems>
<artifactItem>
<groupId>requirejs</groupId>
<artifactId>requirejs</artifactId>
<version>2.0.6</version>
<packaging>js</packaging>
<classifier>min</classifier>
<downloadUrl>http://requirejs.org/docs/release/2.0.6/minified/require.js</downloadUrl>
</artifactItem>
<artifactItem>
<groupId>backbone</groupId>
<artifactId>backbone</artifactId>
<version>0.9.2</version>
<packaging>js</packaging>
<classifier>min</classifier>
<downloadUrl>http://backbonejs.org/backbone-min.js</downloadUrl>
</artifactItem>
<artifactItem>
<groupId>jquery</groupId>
<artifactId>jquery</artifactId>
<version>1.8.1</version>
<packaging>js</packaging>
<classifier>min</classifier>
<downloadUrl>http://code.jquery.com/jquery-1.8.1.min.js</downloadUrl>
</artifactItem>
<artifactItem>
<groupId>underscore</groupId>
<artifactId>underscore</artifactId>
<version>1.3.3</version>
<packaging>js</packaging>
<classifier>min</classifier>
<downloadUrl>http://underscorejs.org/underscore-min.js</downloadUrl>
</artifactItem>
<artifactItem>
<groupId>spin</groupId>
<artifactId>spin</artifactId>
<version>1.2.5</version>
<packaging>js</packaging>
<classifier>min</classifier>
<downloadUrl>http://fgnass.github.com/spin.js/dist/spin.min.js</downloadUrl>
</artifactItem>
<artifactItem>
<groupId>dataTables</groupId>
<artifactId>dataTables</artifactId>
<version>1.9.3</version>
<packaging>js</packaging>
<classifier>min</classifier>
<downloadUrl>http://datatables.net/download/build/jquery.dataTables.min.js</downloadUrl>
</artifactItem>
<artifactItem>
<groupId>xdate</groupId>
<artifactId>xdate</artifactId>
<version>0.7</version>
<packaging>js</packaging>
<classifier>min</classifier>
<downloadUrl>http://arshaw.com/xdate/downloads/0.7/xdate.js</downloadUrl>
</artifactItem>
</artifactItems>
</configuration>
<executions>
<execution>
<id>clean-external-dependencies</id>
<phase>clean</phase>
<goals>
<goal>clean-external</goal>
</goals>
</execution>
<execution>
<id>resolve-install-external-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>resolve-external</goal>
<goal>install-external</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>