2009-04-28 05:59:49 -04:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<!--
|
|
|
|
|
|
2013-05-16 14:29:16 -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
|
|
|
|
|
|
|
|
|
|
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.
|
2010-01-01 12:56:29 -05:00
|
|
|
|
|
2010-08-12 19:04:26 -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">
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.apache.jclouds</groupId>
|
|
|
|
|
<artifactId>jclouds-project</artifactId>
|
|
|
|
|
<version>1.7.0-SNAPSHOT</version>
|
|
|
|
|
<relativePath>project/pom.xml</relativePath>
|
|
|
|
|
</parent>
|
2013-05-31 13:02:49 -04:00
|
|
|
|
<artifactId>jclouds</artifactId>
|
2013-06-16 22:37:32 -04:00
|
|
|
|
<name>Apache jclouds</name>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>project</module>
|
|
|
|
|
<module>resources</module>
|
|
|
|
|
<module>core</module>
|
|
|
|
|
<module>common</module>
|
|
|
|
|
<module>compute</module>
|
|
|
|
|
<module>loadbalancer</module>
|
|
|
|
|
<module>apis</module>
|
|
|
|
|
<module>providers</module>
|
|
|
|
|
<module>blobstore</module>
|
|
|
|
|
<module>skeletons</module>
|
|
|
|
|
<module>drivers</module>
|
|
|
|
|
<module>scriptbuilder</module>
|
|
|
|
|
<module>allcompute</module>
|
|
|
|
|
<module>allblobstore</module>
|
|
|
|
|
<module>allloadbalancer</module>
|
|
|
|
|
<module>all</module>
|
|
|
|
|
</modules>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.mycila.maven-license-plugin</groupId>
|
|
|
|
|
<artifactId>maven-license-plugin</artifactId>
|
|
|
|
|
<version>1.9.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<strictCheck>true</strictCheck>
|
|
|
|
|
<encoding>${sourceEncoding}</encoding>
|
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
|
<header>project/src/etc/header.txt</header>
|
|
|
|
|
<mapping>
|
2013-05-16 14:29:16 -04:00
|
|
|
|
<xml>XML_STYLE</xml>
|
|
|
|
|
<java>SLASHSTAR_STYLE</java>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<clj>SEMICOLON_STYLE</clj>
|
|
|
|
|
</mapping>
|
|
|
|
|
<excludes>
|
2013-05-16 14:29:16 -04:00
|
|
|
|
<!-- expectation files for unit tests -->
|
|
|
|
|
<exclude>**/src/test/resources/**</exclude>
|
|
|
|
|
|
|
|
|
|
<!-- prevent duplicating license -->
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<exclude>**/LICENSE.txt</exclude>
|
2013-05-16 14:29:16 -04:00
|
|
|
|
<exclude>**/header.txt</exclude>
|
|
|
|
|
|
|
|
|
|
<!-- high-level project metadata -->
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<exclude>**/NOTICE.txt</exclude>
|
2013-05-16 14:29:16 -04:00
|
|
|
|
<exclude>**/DISCLAIMER</exclude>
|
|
|
|
|
<exclude>**/BUILD.txt</exclude>
|
|
|
|
|
<exclude>**/CHANGES.txt</exclude>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<exclude>**/README.md</exclude>
|
|
|
|
|
<exclude>**/README.txt</exclude>
|
2013-05-16 14:29:16 -04:00
|
|
|
|
|
|
|
|
|
<!-- reference data lists -->
|
|
|
|
|
<exclude>**/*json</exclude>
|
|
|
|
|
<exclude>**/*readme</exclude>
|
|
|
|
|
|
|
|
|
|
<!-- one-line service registry files -->
|
|
|
|
|
<exclude>**/*ProviderMetadata</exclude>
|
|
|
|
|
<exclude>**/*ApiMetadata</exclude>
|
|
|
|
|
<exclude>**/*LoggingModule</exclude>
|
|
|
|
|
|
|
|
|
|
<!-- temporary files or those generated by IDE or SCM -->
|
|
|
|
|
<exclude>**/target/**</exclude>
|
|
|
|
|
<exclude>**/test-output/**</exclude>
|
|
|
|
|
<exclude>**/bin/**</exclude>
|
|
|
|
|
<exclude>**/.settings/**</exclude>
|
|
|
|
|
<exclude>**/.classpath</exclude>
|
|
|
|
|
<exclude>**/.dir-locals.el</exclude>
|
|
|
|
|
<exclude>**/.project</exclude>
|
|
|
|
|
<exclude>**/.idea/**</exclude>
|
|
|
|
|
<exclude>**/*.iml</exclude>
|
|
|
|
|
<exclude>**/*.eml</exclude>
|
|
|
|
|
<exclude>**/*.ipr</exclude>
|
|
|
|
|
<exclude>**/*.iws</exclude>
|
|
|
|
|
<exclude>**/*.DS_STORE</exclude>
|
|
|
|
|
<exclude>**/TAGS</exclude>
|
|
|
|
|
<exclude>**/.metadata/**</exclude>
|
|
|
|
|
<exclude>**/atlassian-ide-plugin.xml</exclude>
|
|
|
|
|
<exclude>**/.DS_Store</exclude>
|
|
|
|
|
<exclude>.mailmap</exclude>
|
|
|
|
|
<exclude>.git/**</exclude>
|
|
|
|
|
<exclude>**/.gitignore</exclude>
|
|
|
|
|
<exclude>**/.gitattributes</exclude>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
</excludes>
|
2013-05-16 14:29:16 -04:00
|
|
|
|
<useDefaultExcludes>false</useDefaultExcludes>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>distribution</id>
|
|
|
|
|
<build>
|
2009-05-20 18:31:18 -04:00
|
|
|
|
<plugins>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<!-- top-level only -->
|
2013-05-10 17:05:17 -04:00
|
|
|
|
<plugin>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<version>2.3</version>
|
2013-05-10 17:05:17 -04:00
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<id>create-distribution</id>
|
2013-05-10 17:05:17 -04:00
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<goal>single</goal>
|
2013-05-10 17:05:17 -04:00
|
|
|
|
</goals>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<configuration>
|
|
|
|
|
<finalName>jclouds-${project.version}</finalName>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>package-descriptor.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
</configuration>
|
2013-05-10 17:05:17 -04:00
|
|
|
|
</execution>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
</executions>
|
2013-05-10 17:05:17 -04:00
|
|
|
|
</plugin>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>doc</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2013-05-10 17:05:17 -04:00
|
|
|
|
<plugin>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>javadoc</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>aggregate-jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2009-04-28 05:59:49 -04:00
|
|
|
|
</plugins>
|
2013-05-13 13:25:21 -04:00
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
2010-07-26 05:44:26 -04:00
|
|
|
|
</project>
|