|
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>Postgres Lambda Trigger Demo</name> |
9 | 9 | <properties> |
10 | | - <maven.compiler.source>11</maven.compiler.source> |
11 | | - <maven.compiler.target>11</maven.compiler.target> |
| 10 | + <maven.compiler.source>17</maven.compiler.source> |
| 11 | + <maven.compiler.target>17</maven.compiler.target> |
12 | 12 | </properties> |
13 | 13 |
|
14 | 14 | <dependencyManagement> |
15 | 15 | <dependencies> |
16 | 16 | <dependency> |
17 | 17 | <groupId>software.amazon.awssdk</groupId> |
18 | 18 | <artifactId>bom</artifactId> |
19 | | - <version>2.16.104</version> |
| 19 | + <version>2.20.129</version> |
20 | 20 | <type>pom</type> |
21 | 21 | <scope>import</scope> |
22 | 22 | <exclusions> |
|
33 | 33 | <dependency> |
34 | 34 | <groupId>com.amazonaws</groupId> |
35 | 35 | <artifactId>aws-lambda-java-core</artifactId> |
36 | | - <version>1.2.1</version> |
| 36 | + <version>1.2.3</version> |
37 | 37 | </dependency> |
38 | 38 | <dependency> |
39 | 39 | <groupId>com.amazonaws</groupId> |
40 | 40 | <artifactId>aws-lambda-java-events</artifactId> |
41 | | - <version>3.11.0</version> |
| 41 | + <version>3.11.3</version> |
42 | 42 | </dependency> |
43 | 43 | <dependency> |
44 | 44 | <groupId>com.amazonaws.secretsmanager</groupId> |
45 | 45 | <artifactId>aws-secretsmanager-jdbc</artifactId> |
46 | | - <version>1.0.11</version> |
| 46 | + <version>2.0.0</version> |
47 | 47 | </dependency> |
48 | 48 |
|
49 | 49 |
|
|
83 | 83 | <dependency> |
84 | 84 | <groupId>org.postgresql</groupId> |
85 | 85 | <artifactId>postgresql</artifactId> |
86 | | - <version>42.5.4</version> |
| 86 | + <version>42.6.0</version> |
87 | 87 | </dependency> |
88 | 88 | <dependency> |
89 | 89 | <groupId>org.jooq</groupId> |
90 | 90 | <artifactId>jooq</artifactId> |
91 | | - <version>3.15.12</version> |
| 91 | + <version>3.18.6</version> |
92 | 92 | </dependency> |
93 | 93 | <dependency> |
94 | 94 | <groupId>software.amazon.lambda</groupId> |
95 | 95 | <artifactId>powertools-cloudformation</artifactId> |
96 | | - <version>1.14.0</version> |
| 96 | + <version>1.17.0</version> |
97 | 97 | </dependency> |
98 | 98 | </dependencies> |
99 | 99 |
|
|
102 | 102 | <plugin> |
103 | 103 | <groupId>org.apache.maven.plugins</groupId> |
104 | 104 | <artifactId>maven-shade-plugin</artifactId> |
105 | | - <version>3.2.4</version> |
106 | | - <configuration> |
107 | | - |
108 | | - </configuration> |
| 105 | + <version>3.5.0</version> |
109 | 106 | <executions> |
110 | 107 | <execution> |
111 | 108 | <phase>package</phase> |
|
0 commit comments