2009-06-05 04:24:02 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-12-24 14:50:37 -05:00
|
|
|
<!--
|
2009-06-05 04:24:02 -04:00
|
|
|
|
|
|
|
|
2010-08-12 19:04:26 -04:00
|
|
|
Copyright (C) 2010 Cloud Conscious, LLC. <info@cloudconscious.com>
|
2009-12-24 14:50:37 -05:00
|
|
|
|
2010-01-01 12:56:29 -05:00
|
|
|
====================================================================
|
|
|
|
Licensed 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.
|
|
|
|
====================================================================
|
2009-06-05 04:24:02 -04:00
|
|
|
|
2009-12-24 14:50:37 -05:00
|
|
|
-->
|
2010-01-01 12:56:29 -05:00
|
|
|
|
2009-12-24 14:50:37 -05: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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-06-05 04:24:02 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.jclouds</groupId>
|
2009-12-24 14:50:37 -05:00
|
|
|
<artifactId>jclouds-aws-demos-project</artifactId>
|
2010-02-05 00:30:22 -05:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2009-06-05 04:24:02 -04:00
|
|
|
</parent>
|
2009-12-24 14:50:37 -05:00
|
|
|
<artifactId>jclouds-aws-demo-createandlistbuckets</artifactId>
|
2009-11-12 18:00:50 -05:00
|
|
|
<name>jclouds S3 sample that creates a bucket then lists all owned buckets</name>
|
|
|
|
<description>jclouds S3 sample that creates a bucket then lists all owned buckets</description>
|
2009-06-05 04:24:02 -04:00
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2009-12-14 19:50:29 -05:00
|
|
|
<mainClass>org.jclouds.aws.s3.samples.MainApp</mainClass>
|
2009-06-05 04:24:02 -04:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2009-12-14 19:50:29 -05:00
|
|
|
<mainClass>org.jclouds.aws.s3.samples.MainApp</mainClass>
|
2009-06-05 04:24:02 -04:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|