| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | <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> | 
					
						
							|  |  |  | 	<groupId>com.baeldung</groupId> | 
					
						
							| 
									
										
										
										
											2016-10-21 16:32:58 -07:00
										 |  |  | 	<artifactId>spring-boot-dynamodb</artifactId> | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | 	<version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  | 	<packaging>jar</packaging> | 
					
						
							|  |  |  | 	<name>Spring Boot Actuator</name> | 
					
						
							|  |  |  | 	<description>This is simple boot application for Spring boot actuator test</description> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <parent> | 
					
						
							|  |  |  |         <artifactId>spring-boot-starter-parent</artifactId> | 
					
						
							|  |  |  |         <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |         <version>1.2.3.RELEASE</version> | 
					
						
							|  |  |  |         <relativePath/> | 
					
						
							|  |  |  |     </parent> | 
					
						
							|  |  |  |              | 
					
						
							|  |  |  | 	<properties> | 
					
						
							|  |  |  | 		<!-- The main class to start by executing java -jar --> | 
					
						
							| 
									
										
										
										
											2016-10-21 16:32:58 -07:00
										 |  |  | 		<start-class>com.baeldung.Application</start-class> | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
					
						
							|  |  |  | 		<java.version>1.8</java.version> | 
					
						
							|  |  |  | 		<spring.version>4.3.1.RELEASE</spring.version> | 
					
						
							|  |  |  | 	</properties> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 16:32:58 -07:00
										 |  |  | 	<dependencyManagement> | 
					
						
							|  |  |  | 		<dependencies> | 
					
						
							|  |  |  | 			<dependency> | 
					
						
							|  |  |  | 				<groupId>org.springframework.data</groupId> | 
					
						
							|  |  |  | 				<artifactId>spring-data-releasetrain</artifactId> | 
					
						
							|  |  |  | 				<version>Gosling-SR1</version> | 
					
						
							|  |  |  | 				<type>pom</type> | 
					
						
							|  |  |  | 				<scope>import</scope> | 
					
						
							|  |  |  | 			</dependency> | 
					
						
							|  |  |  | 		</dependencies> | 
					
						
							|  |  |  | 	</dependencyManagement> | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 16:32:58 -07:00
										 |  |  | 	<dependencies> | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.springframework.boot</groupId> | 
					
						
							| 
									
										
										
										
											2016-10-21 16:32:58 -07:00
										 |  |  | 			<artifactId>spring-boot-starter-web</artifactId> | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | 		</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-test</artifactId> | 
					
						
							|  |  |  | 			<scope>test</scope> | 
					
						
							|  |  |  | 		</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> | 
					
						
							| 
									
										
										
										
											2016-10-21 16:32:58 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.webjars</groupId> | 
					
						
							|  |  |  | 			<artifactId>bootstrap</artifactId> | 
					
						
							|  |  |  | 			<version>3.3.4</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							| 
									
										
										
										
											2016-10-21 16:32:58 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | 		<dependency> | 
					
						
							|  |  |  |     		<groupId>com.amazonaws</groupId> | 
					
						
							|  |  |  |     		<artifactId>aws-java-sdk-dynamodb</artifactId> | 
					
						
							|  |  |  |     		<version>1.11.34</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							| 
									
										
										
										
											2016-10-02 18:44:56 -07:00
										 |  |  |   			<groupId>com.github.derjust</groupId> | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  |   			<artifactId>spring-data-dynamodb</artifactId> | 
					
						
							| 
									
										
										
										
											2016-10-02 18:44:56 -07:00
										 |  |  |   			<version>4.3.1</version> | 
					
						
							| 
									
										
										
										
											2016-10-21 16:32:58 -07:00
										 |  |  | 		</dependency> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.apache.httpcomponents</groupId> | 
					
						
							|  |  |  | 			<artifactId>httpclient</artifactId> | 
					
						
							|  |  |  | 			<version>4.5.2</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							| 
									
										
										
										
											2016-09-17 22:51:06 -07:00
										 |  |  | 	</dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<build> | 
					
						
							|  |  |  | 		<finalName>spring-boot</finalName> | 
					
						
							|  |  |  | 		<resources> | 
					
						
							|  |  |  | 			<resource> | 
					
						
							|  |  |  | 				<directory>src/main/resources</directory> | 
					
						
							|  |  |  | 				<filtering>true</filtering> | 
					
						
							|  |  |  | 			</resource> | 
					
						
							|  |  |  | 		</resources> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<plugins> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  | 				<artifactId>spring-boot-maven-plugin</artifactId> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 				<artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  | 				<configuration> | 
					
						
							|  |  |  | 					<source>1.8</source> | 
					
						
							|  |  |  | 					<target>1.8</target> | 
					
						
							|  |  |  | 				</configuration> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 				<artifactId>maven-war-plugin</artifactId> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	</build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<repositories> | 
					
						
							|  |  |  | 		<repository> | 
					
						
							|  |  |  | 			<id>spring-snapshots</id> | 
					
						
							|  |  |  | 			<name>Spring Snapshots</name> | 
					
						
							|  |  |  | 			<url>https://repo.spring.io/snapshot</url> | 
					
						
							|  |  |  | 			<snapshots> | 
					
						
							|  |  |  | 				<enabled>true</enabled> | 
					
						
							|  |  |  | 			</snapshots> | 
					
						
							|  |  |  | 		</repository> | 
					
						
							|  |  |  | 		<repository> | 
					
						
							|  |  |  | 			<id>spring-milestones</id> | 
					
						
							|  |  |  | 			<name>Spring Milestones</name> | 
					
						
							|  |  |  | 			<url>https://repo.spring.io/milestone</url> | 
					
						
							|  |  |  | 			<snapshots> | 
					
						
							|  |  |  | 				<enabled>false</enabled> | 
					
						
							|  |  |  | 			</snapshots> | 
					
						
							|  |  |  | 		</repository> | 
					
						
							|  |  |  | 	</repositories> | 
					
						
							|  |  |  | 	<pluginRepositories> | 
					
						
							|  |  |  | 		<pluginRepository> | 
					
						
							|  |  |  | 			<id>spring-snapshots</id> | 
					
						
							|  |  |  | 			<name>Spring Snapshots</name> | 
					
						
							|  |  |  | 			<url>https://repo.spring.io/snapshot</url> | 
					
						
							|  |  |  | 			<snapshots> | 
					
						
							|  |  |  | 				<enabled>true</enabled> | 
					
						
							|  |  |  | 			</snapshots> | 
					
						
							|  |  |  | 		</pluginRepository> | 
					
						
							|  |  |  | 		<pluginRepository> | 
					
						
							|  |  |  | 			<id>spring-milestones</id> | 
					
						
							|  |  |  | 			<name>Spring Milestones</name> | 
					
						
							|  |  |  | 			<url>https://repo.spring.io/milestone</url> | 
					
						
							|  |  |  | 			<snapshots> | 
					
						
							|  |  |  | 				<enabled>false</enabled> | 
					
						
							|  |  |  | 			</snapshots> | 
					
						
							|  |  |  | 		</pluginRepository> | 
					
						
							|  |  |  | 	</pluginRepositories> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </project> |