|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <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"> |
3 | | - <!-- |
4 | 3 | <parent> |
5 | 4 | <artifactId>aws-serverless-java-container</artifactId> |
6 | 5 | <groupId>com.amazonaws.serverless</groupId> |
7 | | - <version>2.1.5-SNAPSHOT</version> |
| 6 | + <version>3.0.0-SNAPSHOT</version> |
8 | 7 | </parent> |
9 | | - --> |
10 | 8 | <modelVersion>4.0.0</modelVersion> |
11 | 9 |
|
12 | 10 | <groupId>com.amazonaws.serverless</groupId> |
|
20 | 18 | <spring.version>6.2.8</spring.version> |
21 | 19 | <springboot.version>3.5.8</springboot.version> |
22 | 20 | <springsecurity.version>6.4.5</springsecurity.version> |
23 | | - <junit.version>5.12.2</junit.version> |
24 | | - <dependencyCheck.version>12.1.1</dependencyCheck.version> |
25 | | - <maven.compiler.source>17</maven.compiler.source> |
26 | | - <maven.compiler.target>17</maven.compiler.target> |
27 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
28 | 21 | </properties> |
29 | 22 |
|
30 | 23 | <dependencies> |
|
37 | 30 | <dependency> |
38 | 31 | <groupId>com.amazonaws.serverless</groupId> |
39 | 32 | <artifactId>aws-serverless-java-container-core</artifactId> |
40 | | - <version>2.1.5-SNAPSHOT</version> |
| 33 | + <version>3.0.0-SNAPSHOT</version> |
| 34 | + <exclusions> |
| 35 | + <exclusion> |
| 36 | + <groupId>tools.jackson.core</groupId> |
| 37 | + <artifactId>jackson-databind</artifactId> |
| 38 | + </exclusion> |
| 39 | + <exclusion> |
| 40 | + <groupId>tools.jackson.core</groupId> |
| 41 | + <artifactId>jackson-core</artifactId> |
| 42 | + </exclusion> |
| 43 | + <exclusion> |
| 44 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 45 | + <artifactId>jackson-annotations</artifactId> |
| 46 | + </exclusion> |
| 47 | + </exclusions> |
41 | 48 | </dependency> |
42 | 49 | <dependency> |
43 | 50 | <groupId>com.amazonaws.serverless</groupId> |
44 | 51 | <artifactId>aws-serverless-java-container-core</artifactId> |
45 | | - <version>2.1.5-SNAPSHOT</version> |
| 52 | + <version>3.0.0-SNAPSHOT</version> |
46 | 53 | <classifier>tests</classifier> |
47 | 54 | <type>test-jar</type> |
48 | 55 | <scope>test</scope> |
|
53 | 60 | <version>4.9.3</version> |
54 | 61 | <scope>provided</scope> |
55 | 62 | </dependency> |
| 63 | + <!-- Jackson 2 dependencies for SpringBoot3 compatibility --> |
| 64 | + <dependency> |
| 65 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 66 | + <artifactId>jackson-core</artifactId> |
| 67 | + <version>2.18.2</version> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 71 | + <artifactId>jackson-databind</artifactId> |
| 72 | + <version>2.18.2</version> |
| 73 | + </dependency> |
56 | 74 | <dependency> |
57 | 75 | <groupId>org.springframework</groupId> |
58 | 76 | <artifactId>spring-webflux</artifactId> |
|
180 | 198 | <dependency> |
181 | 199 | <groupId>org.junit.jupiter</groupId> |
182 | 200 | <artifactId>junit-jupiter</artifactId> |
183 | | - <version>${junit.version}</version> |
184 | 201 | <scope>test</scope> |
185 | 202 | </dependency> |
186 | 203 |
|
|
0 commit comments