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.
|
|
|
|
====================================================================
|
|
|
|
-->
|
|
|
|
<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">
|
|
|
|
<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>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<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>
|
|
|
|
<name>JClouds</name>
|
|
|
|
<modules>
|
|
|
|
<module>project</module>
|
|
|
|
<module>core</module>
|
|
|
|
<module>extensions/httpnio</module>
|
2009-05-04 16:19:42 -04:00
|
|
|
<module>extensions/log4j</module>
|
2009-05-10 12:51:31 -04:00
|
|
|
<module>extensions/gae</module>
|
2009-04-28 05:59:49 -04:00
|
|
|
<module>s3</module>
|
|
|
|
</modules>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.maven-license-plugin</groupId>
|
|
|
|
<artifactId>maven-license-plugin</artifactId>
|
|
|
|
<version>1.4.0</version>
|
|
|
|
<configuration>
|
|
|
|
<header>project/src/etc/header.txt</header>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
<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>
|