Skip to content
Snippets Groups Projects
  • Spencer Sutton's avatar
    4049fd22
    Multi-tenancy · 4049fd22
    Spencer Sutton authored
    commit 57a24b40 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 13:01:23 GMT-0500 (Central Daylight Time) 
    
        Consolidating s3 client classes
    
    
    commit c6f635ba 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 12:40:15 GMT-0500 (Central Daylight Time) 
    
        Cleaning up
    
    
    commit 5c9e8475 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 11:59:24 GMT-0500 (Central Daylight Time) 
    
        Updating core lib aws version
    
    
    commit e3e0f9c4 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 11:45:09 GMT-0500 (Central Daylight Time) 
    
        Adjusting  tests for mult-tenancy
    
    
    commit 7064328e 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 10:57:11 GMT-0500 (Central Daylight Time) 
    
        Deleted accidental key
    
    
    commit a65471ea 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 10:56:30 GMT-0500 (Central Daylight Time) 
    
        Updating to be multi-tenant
    4049fd22
    History
    Multi-tenancy
    Spencer Sutton authored
    commit 57a24b40 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 13:01:23 GMT-0500 (Central Daylight Time) 
    
        Consolidating s3 client classes
    
    
    commit c6f635ba 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 12:40:15 GMT-0500 (Central Daylight Time) 
    
        Cleaning up
    
    
    commit 5c9e8475 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 11:59:24 GMT-0500 (Central Daylight Time) 
    
        Updating core lib aws version
    
    
    commit e3e0f9c4 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 11:45:09 GMT-0500 (Central Daylight Time) 
    
        Adjusting  tests for mult-tenancy
    
    
    commit 7064328e 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 10:57:11 GMT-0500 (Central Daylight Time) 
    
        Deleted accidental key
    
    
    commit a65471ea 
    Author: Spencer Sutton <spencerpsutton@yahoo.com> 
    Date: Wed May 05 2021 10:56:30 GMT-0500 (Central Daylight Time) 
    
        Updating to be multi-tenant
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 7.07 KiB
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright © 2020 Amazon Web Services

  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.
-->
<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">
    <parent>
        <artifactId>legal-service</artifactId>
        <groupId>org.opengroup.osdu.legal</groupId>
        <version>0.9.0-SNAPSHOT</version>
        <relativePath>../../pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>legal-aws</artifactId>
    <packaging>jar</packaging>

    <properties>
        <aws.version>1.11.651</aws.version>
        <deployment.environment>dev</deployment.environment>
        <version.number>0.9.0-SNAPSHOT</version.number>
    </properties>

    <dependencies>
        <!-- Internal packages -->
        <dependency>
            <groupId>org.opengroup.osdu.core.aws</groupId>
            <artifactId>os-core-lib-aws</artifactId>
            <version>0.9.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.opengroup.osdu</groupId>
            <artifactId>os-core-common</artifactId>
        </dependency>
        <dependency>
            <groupId>org.opengroup.osdu.legal</groupId>
            <artifactId>legal-core</artifactId>
            <version>${version.number}</version>
        </dependency>

        <!-- AWS-managed packages -->
        <dependency>
            <groupId>com.amazonaws</groupId>
            <artifactId>aws-java-sdk-bom</artifactId>
            <version>${aws.version}</version>
            <type>pom</type>
        </dependency>
        <dependency>
            <groupId>com.amazonaws</groupId>
            <artifactId>aws-java-sdk</artifactId>
            <version>${aws.version}</version>
        </dependency>
        <dependency>
            <groupId>com.amazonaws</groupId>
            <artifactId>aws-java-sdk-core</artifactId>
            <version>${aws.version}</version>
        </dependency>
        <dependency>
            <groupId>com.amazonaws</groupId>