Skip to content

Commit

Permalink
Merge pull request #42 from Shakila/master
Browse files Browse the repository at this point in the history
Change to support AWS SDK
  • Loading branch information
Shakila authored Nov 5, 2020
2 parents b31c781 + 61d24ee commit 8c69d2e
Show file tree
Hide file tree
Showing 252 changed files with 15,513 additions and 7,300 deletions.
40 changes: 36 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~ Copyright (c) 2016-2020, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. licenses this file to you under the Apache License,
~ Version 2.0 (the "License"); you may not use this file except
Expand All @@ -23,7 +23,7 @@
<groupId>org.wso2.carbon.connector</groupId>
<artifactId>org.wso2.carbon.connector.amazons3</artifactId>
<packaging>jar</packaging>
<version>1.1.1-SNAPSHOT</version>
<version>2.0.0</version>
<name>WSO2 Carbon - Mediation Library Connector For amazons3</name>
<url>http://wso2.org</url>
<properties>
Expand All @@ -40,6 +40,8 @@
<jets3t.version>0.9.4</jets3t.version>
<integration.base.version>1.0.3</integration.base.version>
<skip-tests>true</skip-tests>
<carbon.mediation.version>4.7.30</carbon.mediation.version>
<software.amazon.awssdk.version>2.14.12</software.amazon.awssdk.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -192,6 +194,36 @@
<version>${integration.base.version}</version>
<scope>test</scope>
</dependency>
<!--Dependency for S3-->
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<version>${software.amazon.awssdk.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>url-connection-client</artifactId>
<version>${software.amazon.awssdk.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.mediation</groupId>
<artifactId>org.wso2.carbon.connector.core</artifactId>
<version>${carbon.mediation.version}</version>
</dependency>
</dependencies>
<scm>
<connection>scm:git:https://github.com/wso2-extensions/esb-connector-amazons3.git
Expand All @@ -208,8 +240,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 8c69d2e

Please sign in to comment.