]> git.proxmox.com Git - ceph.git/blob - ceph/examples/rgw/java/ceph-s3-upload/pom.xml
update ceph source to reef 18.1.2
[ceph.git] / ceph / examples / rgw / java / ceph-s3-upload / pom.xml
1 <project
2 xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>org.example.cephs3upload</groupId>
7 <artifactId>ceph-s3-upload</artifactId>
8 <packaging>jar</packaging>
9 <version>1.0-SNAPSHOT</version>
10 <name>ceph-s3-upload</name>
11 <url>http://maven.apache.org</url>
12 <properties>
13 <maven.compiler.source>1.8</maven.compiler.source>
14 <maven.compiler.target>1.8</maven.compiler.target>
15 </properties>
16 <dependencyManagement>
17 <dependencies>
18 <dependency>
19 <groupId>com.amazonaws</groupId>
20 <artifactId>aws-java-sdk-bom</artifactId>
21 <version>1.12.201</version>
22 <type>pom</type>
23 <scope>import</scope>
24 </dependency>
25 </dependencies>
26 </dependencyManagement>
27 <dependencies>
28 <dependency>
29 <groupId>com.amazonaws</groupId>
30 <artifactId>aws-java-sdk-s3</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>junit</groupId>
34 <artifactId>junit</artifactId>
35 <version>3.8.1</version>
36 <scope>test</scope>
37 </dependency>
38 </dependencies>
39 <build>
40 <plugins>
41 <plugin>
42 <extensions>true</extensions>
43 <artifactId>maven-assembly-plugin</artifactId>
44
45 <executions>
46 <execution>
47 <phase>package</phase>
48 <goals>
49 <goal>single</goal>
50 </goals>
51 </execution>
52 </executions>
53 <configuration>
54 <archive>
55 <manifest>
56 <addClasspath>true</addClasspath>
57 <mainClass>org.example.cephs3upload.App</mainClass>
58 </manifest>
59 </archive>
60 <descriptorRefs>
61 <descriptorRef>jar-with-dependencies</descriptorRef>
62 </descriptorRefs>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
67 </project>