Skip to content

Commit ecda67d

Browse files
committed
Merge branch 's3ec'
2 parents 5934a51 + 85db175 commit ecda67d

File tree

676 files changed

+120302
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

676 files changed

+120302
-0
lines changed

aws-java-sdk-s3/build.properties

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
source.. = src/main/java,\
2+
src/main/resources
3+
output.. = bin/
4+
5+
bin.includes = LICENSE.txt,\
6+
NOTICE.txt,\
7+
META-INF/,\
8+
.
9+
10+
jre.compilation.profile = JavaSE-1.7

aws-java-sdk-s3/pom.xml

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<?xml version="1.0"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.amazonaws</groupId>
7+
<artifactId>aws-java-sdk-pom</artifactId>
8+
<version>1.12.184-SNAPSHOT</version>
9+
</parent>
10+
<groupId>com.amazonaws</groupId>
11+
<artifactId>aws-java-sdk-s3</artifactId>
12+
<name>AWS Java SDK for Amazon S3</name>
13+
<description>The AWS Java SDK for Amazon S3 module holds the client classes that are used for communicating with Amazon Simple Storage Service</description>
14+
<url>https://aws.amazon.com/sdkforjava</url>
15+
16+
<!-- The dependencies section in pom.xml is auto generated. No manual changes are allowed -->
17+
<dependencies>
18+
<dependency>
19+
<artifactId>aws-java-sdk-kms</artifactId>
20+
<groupId>com.amazonaws</groupId>
21+
<optional>false</optional>
22+
<version>${awsjavasdk.version}</version>
23+
</dependency>
24+
<dependency>
25+
<artifactId>aws-java-sdk-core</artifactId>
26+
<groupId>com.amazonaws</groupId>
27+
<optional>false</optional>
28+
<version>${awsjavasdk.version}</version>
29+
</dependency>
30+
<dependency>
31+
<artifactId>aws-java-sdk-test-utils</artifactId>
32+
<groupId>com.amazonaws</groupId>
33+
<optional>false</optional>
34+
<scope>test</scope>
35+
<version>${awsjavasdk.version}</version>
36+
</dependency>
37+
<dependency>
38+
<artifactId>jmespath-java</artifactId>
39+
<groupId>com.amazonaws</groupId>
40+
<optional>false</optional>
41+
</dependency>
42+
</dependencies>
43+
44+
<build>
45+
<plugins>
46+
<plugin>
47+
<groupId>org.apache.maven.plugins</groupId>
48+
<artifactId>maven-compiler-plugin</artifactId>
49+
</plugin>
50+
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-javadoc-plugin</artifactId>
54+
</plugin>
55+
</plugins>
56+
</build>
57+
58+
<!-- This profile uses the JAPICMP plugin to generate a report of changes between the release version and the latest version -->
59+
<!-- For more information on the plugin, see https://github.com/siom79/japicmp -->
60+
<profiles>
61+
<profile>
62+
<id>versiondiff</id>
63+
<build>
64+
<plugins>
65+
<plugin>
66+
<groupId>com.github.siom79.japicmp</groupId>
67+
<artifactId>japicmp-maven-plugin</artifactId>
68+
<version>0.5.0</version>
69+
<executions>
70+
<execution>
71+
<phase>verify</phase>
72+
<goals>
73+
<goal>cmp</goal>
74+
</goals>
75+
</execution>
76+
</executions>
77+
<configuration>
78+
<oldVersion>
79+
<dependency>
80+
<groupId>com.amazonaws</groupId>
81+
<artifactId>aws-java-sdk-s3</artifactId>
82+
<version>RELEASE</version>
83+
</dependency>
84+
</oldVersion>
85+
<newVersion>
86+
<file>
87+
<path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
88+
</file>
89+
</newVersion>
90+
<parameter>
91+
<onlyModified>true</onlyModified>
92+
<accessModifier>public</accessModifier>
93+
<breakBuildOnModifications>false</breakBuildOnModifications>
94+
<breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
95+
<onlyBinaryIncompatible>false</onlyBinaryIncompatible>
96+
</parameter>
97+
</configuration>
98+
</plugin>
99+
</plugins>
100+
</build>
101+
</profile>
102+
</profiles>
103+
</project>

0 commit comments

Comments
 (0)