2009-04-28 05:59:49 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
$HeadURL$
|
|
|
|
$Revision$
|
|
|
|
$Date$
|
|
|
|
|
2009-05-07 04:10:55 -04:00
|
|
|
Copyright (C) 2009 Adrian Cole <adrian@jclouds.org>
|
2009-04-28 05:59:49 -04:00
|
|
|
|
|
|
|
====================================================================
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
====================================================================
|
|
|
|
-->
|
2009-06-30 13:17:16 -04:00
|
|
|
<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">
|
2009-04-28 05:59:49 -04:00
|
|
|
<parent>
|
2009-04-28 07:04:32 -04:00
|
|
|
<artifactId>jclouds-project</artifactId>
|
2009-04-28 05:59:49 -04:00
|
|
|
<groupId>org.jclouds</groupId>
|
2009-06-30 13:53:59 -04:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2009-04-28 05:59:49 -04:00
|
|
|
<relativePath>project/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-04-28 07:04:32 -04:00
|
|
|
<artifactId>jclouds-multi</artifactId>
|
2009-04-28 05:59:49 -04:00
|
|
|
<packaging>pom</packaging>
|
2009-05-10 21:09:41 -04:00
|
|
|
<name>jclouds</name>
|
2009-04-28 05:59:49 -04:00
|
|
|
<modules>
|
2009-05-20 18:31:18 -04:00
|
|
|
<module>project</module>
|
2009-07-11 18:36:51 -04:00
|
|
|
<module>thirdparty</module>
|
2009-04-28 05:59:49 -04:00
|
|
|
<module>core</module>
|
2009-09-23 20:28:01 -04:00
|
|
|
<module>blobstore</module>
|
2009-05-20 18:31:18 -04:00
|
|
|
<module>extensions</module>
|
|
|
|
<module>aws</module>
|
2009-09-01 02:16:38 -04:00
|
|
|
<module>azure</module>
|
2009-07-05 17:25:49 -04:00
|
|
|
<module>rackspace</module>
|
2009-09-25 01:37:16 -04:00
|
|
|
<module>mezeo</module>
|
2009-04-28 05:59:49 -04:00
|
|
|
</modules>
|
|
|
|
<build>
|
2009-05-20 18:31:18 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<quiet>true</quiet>
|
|
|
|
<links>
|
|
|
|
<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
|
|
|
|
<link>http://java.sun.com/javaee/5/docs/api/</link>
|
|
|
|
</links>
|
|
|
|
<footer><![CDATA[
|
2009-05-10 21:09:41 -04:00
|
|
|
<!-- Google Analytics -->
|
|
|
|
<script type='text/javascript'>
|
|
|
|
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
|
|
|
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
|
|
|
</script>
|
|
|
|
<script type='text/javascript'>
|
|
|
|
try {
|
|
|
|
var pageTracker = _gat._getTracker("UA-8638379-1");
|
|
|
|
pageTracker._trackPageview();
|
|
|
|
} catch(err) {}</script>
|
|
|
|
]]></footer>
|
2009-05-20 18:31:18 -04:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>javadoc</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>aggregate</goal>
|
|
|
|
</goals>
|
2009-05-10 21:09:41 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2009-05-20 18:31:18 -04:00
|
|
|
</plugin>
|
2009-04-28 05:59:49 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.maven-license-plugin</groupId>
|
|
|
|
<artifactId>maven-license-plugin</artifactId>
|
|
|
|
<version>1.4.0</version>
|
|
|
|
<configuration>
|
2009-05-28 17:10:33 -04:00
|
|
|
<aggregate>true</aggregate>
|
2009-04-28 05:59:49 -04:00
|
|
|
<header>project/src/etc/header.txt</header>
|
|
|
|
<excludes>
|
|
|
|
<!-- amazon files have their own license -->
|
|
|
|
<exclude>**/src/main/java/com/amazon/**</exclude>
|
|
|
|
<exclude>**/S3Driver.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
<properties>
|
|
|
|
<year>${project.inceptionYear}</year>
|
2009-05-07 04:10:55 -04:00
|
|
|
<email>adrian@jclouds.org</email>
|
2009-04-28 05:59:49 -04:00
|
|
|
</properties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|