* JAVA-5875: Upgrade Spring Boot to 2.5.1 * JAVA-5875: Leave jta module on Spring Boot 2.4.7 * JAVA-5875: Update spring-boot-persistence-mongodb to use embedded Mongo 3.0 * JAVA-5875: Leave spring-data-dynamodb on Spring Boot 2.4.7 * JAVA-5875: ErrorController#getErrorPath has been removed * JAVA-5875: Fix SQL Script DataSource Initialization * JAVA-5875: ErrorController#getErrorPath has been removed * JAVA-5875: Fix RepositoryRestConfigurer * JAVA-5875: Fix issues caused by rest-assured upgrade * JAVA-5875: Upgrade spring-cloud-dependencies to 2020.0.3 * JAVA-5875: Leave spring-boot-keycloak on Spring Boot 2.4.7 * JAVA-5875: Fix data.sql script initialization * JAVA-5875: Leave spring-security-legacy-oidc on Spring Boot 2.4.7 * JAVA-5875: Fix data.sql script initialization * JAVA-5875: Fix data.sql script initialization * JAVA-5875: Update de.flapdoodle.embed.mongo dependency * JAVA-5875: Upgrade spring-cloud-dependencies to 2020.0.3 * JAVA-5875: Update Spring Cloud dependencies * JAVA-5875: Update cloud dependencies * JAVA-5875: Defer datasource initialization * JAVA-5875: Fix rest assured version * JAVA-5875: Fix Spring Batch serialization issue * JAVA-5875: Update Spring Cloud Stream version * JAVA-5875: Update Spring Kafka version * JAVA-5875: Leave spring-zuul-rate-limiting on Spring Boot 2.4.7 Co-authored-by: Krzysztof Woyke <krzysztof.woyke.sp@lhsystems.com>
		
			
				
	
	
		
			189 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			189 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <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">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <artifactId>spring-data-dynamodb</artifactId>
 | |
|     <name>spring-data-dynamodb</name>
 | |
|     <packaging>jar</packaging>
 | |
|     <description>This is simple boot application for Spring boot dynamodb test</description>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-boot-2</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../../parent-boot-2</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencyManagement>
 | |
|         <dependencies>
 | |
|             <dependency>
 | |
|                 <groupId>org.springframework.data</groupId>
 | |
|                 <artifactId>spring-data-releasetrain</artifactId>
 | |
|                 <version>Lovelace-SR16</version>
 | |
|                 <type>pom</type>
 | |
|                 <scope>import</scope>
 | |
|             </dependency>
 | |
|         </dependencies>
 | |
|     </dependencyManagement>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-web</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-actuator</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-security</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.dropwizard.metrics</groupId>
 | |
|             <artifactId>metrics-core</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.h2database</groupId>
 | |
|             <artifactId>h2</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.jayway.jsonpath</groupId>
 | |
|             <artifactId>json-path</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-mail</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.webjars</groupId>
 | |
|             <artifactId>bootstrap</artifactId>
 | |
|             <version>${bootstrap.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.amazonaws</groupId>
 | |
|             <artifactId>aws-java-sdk-dynamodb</artifactId>
 | |
|             <version>${aws-java-sdk-dynamodb.version}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>commons-logging</artifactId>
 | |
|                     <groupId>commons-logging</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.github.derjust</groupId>
 | |
|             <artifactId>spring-data-dynamodb</artifactId>
 | |
|             <version>${spring-data-dynamodb.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.httpcomponents</groupId>
 | |
|             <artifactId>httpclient</artifactId>
 | |
|         </dependency>
 | |
|         <!-- ================================================== -->
 | |
|         <!-- DynamoDBLocal dependencies -->
 | |
|         <!-- ================================================== -->
 | |
|         <dependency>
 | |
|             <groupId>com.amazonaws</groupId>
 | |
|             <artifactId>DynamoDBLocal</artifactId>
 | |
|             <version>${dynamodblocal.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.almworks.sqlite4java</groupId>
 | |
|             <artifactId>sqlite4java</artifactId>
 | |
|             <version>${sqlite4java.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.almworks.sqlite4java</groupId>
 | |
|             <artifactId>sqlite4java-win32-x86</artifactId>
 | |
|             <version>${sqlite4java.version}</version>
 | |
|             <type>dll</type>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.almworks.sqlite4java</groupId>
 | |
|             <artifactId>sqlite4java-win32-x64</artifactId>
 | |
|             <version>${sqlite4java.version}</version>
 | |
|             <type>dll</type>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.almworks.sqlite4java</groupId>
 | |
|             <artifactId>libsqlite4java-osx</artifactId>
 | |
|             <version>${sqlite4java.version}</version>
 | |
|             <type>dylib</type>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.almworks.sqlite4java</groupId>
 | |
|             <artifactId>libsqlite4java-linux-i386</artifactId>
 | |
|             <version>${sqlite4java.version}</version>
 | |
|             <type>so</type>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.almworks.sqlite4java</groupId>
 | |
|             <artifactId>libsqlite4java-linux-amd64</artifactId>
 | |
|             <version>${sqlite4java.version}</version>
 | |
|             <type>so</type>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-dependency-plugin</artifactId>
 | |
|                 <version>${maven-dependency-plugin.version}</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>copy-dependencies</id>
 | |
|                         <phase>test-compile</phase>
 | |
|                         <goals>
 | |
|                             <goal>copy-dependencies</goal>
 | |
|                         </goals>
 | |
|                         <configuration>
 | |
|                             <includeScope>test</includeScope>
 | |
|                             <includeTypes>so,dll,dylib</includeTypes>
 | |
|                             <outputDirectory>${project.basedir}/native-libs</outputDirectory>
 | |
|                         </configuration>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <repositories>
 | |
|         <repository>
 | |
|             <id>dynamodb-local</id>
 | |
|             <name>DynamoDB Local Release Repository</name>
 | |
|             <url>${dynamodblocal.repository.url}</url>
 | |
|         </repository>
 | |
|     </repositories>
 | |
| 
 | |
|     <properties>
 | |
|         <!-- The main class to start by executing java -jar -->
 | |
|         <start-class>com.baeldung.Application</start-class>
 | |
|         <spring.version>4.3.4.RELEASE</spring.version>
 | |
|         <httpclient.version>4.5.2</httpclient.version>
 | |
|         <spring-data-dynamodb.version>5.1.0</spring-data-dynamodb.version>
 | |
|         <aws-java-sdk-dynamodb.version>1.11.64</aws-java-sdk-dynamodb.version>
 | |
|         <bootstrap.version>3.3.7-1</bootstrap.version>
 | |
|         <sqlite4java.version>1.0.392</sqlite4java.version>
 | |
|         <dynamodb.version>1.11.106</dynamodb.version>
 | |
|         <dynamodblocal.version>1.11.86</dynamodblocal.version>
 | |
|         <dynamodblocal.repository.url>https://s3-us-west-2.amazonaws.com/dynamodb-local/release</dynamodblocal.repository.url>
 | |
|         <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
 | |
|         <spring-boot.version>2.4.7</spring-boot.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |