|
5 | 5 | <artifactId>aws-s3-lambda-dynamodb-batch-loader</artifactId>
|
6 | 6 | <version>1.0.1</version>
|
7 | 7 | <name>aws-s3-lambda-dynamodb-csv-loader</name>
|
| 8 | + <dependencyManagement> |
| 9 | + <dependencies> |
| 10 | + <dependency> |
| 11 | + <groupId>software.amazon.awssdk</groupId> |
| 12 | + <artifactId>bom</artifactId> |
| 13 | + <version>2.15.67</version> |
| 14 | + <type>pom</type> |
| 15 | + <scope>import</scope> |
| 16 | + </dependency> |
| 17 | + </dependencies> |
| 18 | + </dependencyManagement> |
8 | 19 | <dependencies>
|
9 | 20 | <dependency>
|
10 |
| - <groupId>com.amazonaws</groupId> |
11 |
| - <artifactId>aws-lambda-java-core</artifactId> |
12 |
| - <version>1.2.1</version> |
| 21 | + <groupId>com.google.guava</groupId> |
| 22 | + <artifactId>guava</artifactId> |
| 23 | + <version>30.1-jre</version> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>software.amazon.awssdk</groupId> |
| 27 | + <artifactId>url-connection-client</artifactId> |
| 28 | + <version>2.1.0</version> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>software.amazon.awssdk</groupId> |
| 32 | + <artifactId>s3</artifactId> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>software.amazon.awssdk</groupId> |
| 36 | + <artifactId>dynamodb</artifactId> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>software.amazon.awssdk</groupId> |
| 40 | + <artifactId>utils</artifactId> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>software.amazon.awssdk</groupId> |
| 44 | + <artifactId>regions</artifactId> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>software.amazon.awssdk</groupId> |
| 48 | + <artifactId>lambda</artifactId> |
13 | 49 | </dependency>
|
14 | 50 | <dependency>
|
15 | 51 | <groupId>com.amazonaws</groupId>
|
|
18 | 54 | </dependency>
|
19 | 55 | <dependency>
|
20 | 56 | <groupId>com.amazonaws</groupId>
|
21 |
| - <artifactId>aws-java-sdk-dynamodb</artifactId> |
22 |
| - <version>1.11.933</version> |
| 57 | + <artifactId>aws-lambda-java-events-sdk-transformer</artifactId> |
| 58 | + <version>3.0.2</version> |
23 | 59 | </dependency>
|
24 | 60 | <dependency>
|
25 |
| - <groupId>net.sf.opencsv</groupId> |
26 |
| - <artifactId>opencsv</artifactId> |
27 |
| - <version>2.3</version> |
| 61 | + <groupId>com.amazonaws</groupId> |
| 62 | + <artifactId>aws-lambda-java-log4j2</artifactId> |
| 63 | + <version>1.2.0</version> |
28 | 64 | </dependency>
|
29 | 65 | <dependency>
|
30 |
| - <groupId>com.google.guava</groupId> |
31 |
| - <artifactId>guava</artifactId> |
32 |
| - <version>30.1-jre</version> |
| 66 | + <groupId>com.amazonaws</groupId> |
| 67 | + <artifactId>aws-lambda-java-runtime-interface-client</artifactId> |
| 68 | + <version>1.0.0</version> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>com.amazonaws</groupId> |
| 72 | + <artifactId>aws-lambda-java-core</artifactId> |
| 73 | + <version>1.2.1</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>com.jayway.jsonpath</groupId> |
| 77 | + <artifactId>json-path</artifactId> |
| 78 | + <version>2.5.0</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>com.googlecode.json-simple</groupId> |
| 82 | + <artifactId>json-simple</artifactId> |
| 83 | + <version>1.1.1</version> |
33 | 84 | </dependency>
|
34 | 85 | </dependencies>
|
35 |
| - |
36 | 86 | <build>
|
37 | 87 | <plugins>
|
38 | 88 | <plugin>
|
|
75 | 125 | <artifactId>maven-compiler-plugin</artifactId>
|
76 | 126 | <version>3.8.1</version>
|
77 | 127 | <configuration>
|
78 |
| - <source>8</source> |
79 |
| - <target>8</target> |
| 128 | + <source>11</source> |
| 129 | + <target>11</target> |
80 | 130 | </configuration>
|
81 | 131 | </plugin>
|
82 | 132 | </plugins>
|
|
0 commit comments