Repository: jclouds-examples Updated Branches: refs/heads/up-to-1.8.x 81ed4a559 -> ac12a075c (forced update)
Adding glacier and openstack modules Project: http://git-wip-us.apache.org/repos/asf/jclouds-examples/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds-examples/commit/560ce34a Tree: http://git-wip-us.apache.org/repos/asf/jclouds-examples/tree/560ce34a Diff: http://git-wip-us.apache.org/repos/asf/jclouds-examples/diff/560ce34a Branch: refs/heads/up-to-1.8.x Commit: 560ce34a3f0ff6706335ae0f4c345e652efe1ed2 Parents: 89aa821 Author: Andrew Phillips <[email protected]> Authored: Sat Oct 18 16:13:11 2014 -0400 Committer: Andrew Phillips <[email protected]> Committed: Sat Oct 18 16:20:10 2014 -0400 ---------------------------------------------------------------------- glacier/pom.xml | 17 +++++++++++------ openstack/pom.xml | 14 ++++++++++++++ pom.xml | 4 +++- 3 files changed, 28 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds-examples/blob/560ce34a/glacier/pom.xml ---------------------------------------------------------------------- diff --git a/glacier/pom.xml b/glacier/pom.xml index f0e6782..bb05486 100644 --- a/glacier/pom.xml +++ b/glacier/pom.xml @@ -21,9 +21,9 @@ 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> <groupId>org.apache.jclouds.examples</groupId> - <artifactId>glacier</artifactId> + <artifactId>glacier-examples</artifactId> <version>1.8.0</version> - <name>glacier</name> + <name>glacier-examples</name> <dependencies> <dependency> @@ -35,7 +35,15 @@ <build> <finalName>${project.artifactId}</finalName> <plugins> - + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <encoding>${project.build.sourceEncoding}</encoding> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> @@ -48,7 +56,6 @@ </archive> </configuration> </plugin> - <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> @@ -73,7 +80,5 @@ </executions> </plugin> </plugins> - </build> - </project> http://git-wip-us.apache.org/repos/asf/jclouds-examples/blob/560ce34a/openstack/pom.xml ---------------------------------------------------------------------- diff --git a/openstack/pom.xml b/openstack/pom.xml index 306c2c2..4ccb2bc 100644 --- a/openstack/pom.xml +++ b/openstack/pom.xml @@ -94,4 +94,18 @@ <version>5.1.25</version> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <encoding>${project.build.sourceEncoding}</encoding> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + </plugins> + </build> </project> http://git-wip-us.apache.org/repos/asf/jclouds-examples/blob/560ce34a/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c552554..2d4383a 100644 --- a/pom.xml +++ b/pom.xml @@ -64,8 +64,10 @@ <module>blobstore-largeblob</module> <module>chef-basics</module> <module>compute-basics</module> - <module>rackspace</module> <module>google</module> + <module>glacier</module> + <module>openstack</module> + <module>rackspace</module> <!-- TODO: These modules have bit-rotted: <module>blobstore-hdfs</module>
