| 
									
										
										
										
											2016-10-05 00:12:42 -04: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> | 
					
						
							|  |  |  | 	<artifactId>spring-jms</artifactId> | 
					
						
							|  |  |  | 	<version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  | 	<packaging>war</packaging> | 
					
						
							|  |  |  | 	<name>spring-jms</name> | 
					
						
							|  |  |  | 	<description>Introduction to Spring JMS</description> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<properties> | 
					
						
							| 
									
										
										
										
											2016-12-07 14:51:06 +02:00
										 |  |  | 		<springframework.version>4.3.4.RELEASE</springframework.version> | 
					
						
							|  |  |  | 		<activemq.version>5.14.1</activemq.version> | 
					
						
							| 
									
										
										
										
											2016-10-12 12:08:13 -04:00
										 |  |  | 		<junit.version>4.12</junit.version> | 
					
						
							| 
									
										
										
										
											2016-12-07 14:51:06 +02:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version> | 
					
						
							|  |  |  | 		<maven-war-plugin.version>2.6</maven-war-plugin.version> | 
					
						
							| 
									
										
										
										
											2016-10-05 00:12:42 -04:00
										 |  |  | 	</properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<dependencies> | 
					
						
							|  |  |  | 		<!-- Spring JMS --> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.springframework</groupId> | 
					
						
							|  |  |  | 			<artifactId>spring-jms</artifactId> | 
					
						
							|  |  |  | 			<version>${springframework.version}</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 		<!-- ActiveMQ --> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.apache.activemq</groupId> | 
					
						
							|  |  |  | 			<artifactId>activemq-all</artifactId> | 
					
						
							|  |  |  | 			<version>${activemq.version}</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							| 
									
										
										
										
											2016-10-09 21:21:09 +02:00
										 |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>junit</groupId> | 
					
						
							|  |  |  | 			<artifactId>junit</artifactId> | 
					
						
							| 
									
										
										
										
											2016-10-12 12:08:13 -04:00
										 |  |  | 			<version>${junit.version}</version> | 
					
						
							| 
									
										
										
										
											2016-10-09 21:21:09 +02:00
										 |  |  | 			<scope>test</scope> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							| 
									
										
										
										
											2016-10-05 00:12:42 -04:00
										 |  |  | 	</dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<build> | 
					
						
							|  |  |  | 		<pluginManagement> | 
					
						
							|  |  |  | 			<plugins> | 
					
						
							|  |  |  | 				<plugin> | 
					
						
							|  |  |  | 					<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 					<artifactId>maven-compiler-plugin</artifactId> | 
					
						
							| 
									
										
										
										
											2016-12-07 14:51:06 +02:00
										 |  |  | 					<version>${maven-compiler-plugin.version}</version> | 
					
						
							| 
									
										
										
										
											2016-10-05 00:12:42 -04:00
										 |  |  | 					<configuration> | 
					
						
							| 
									
										
										
										
											2016-10-09 21:21:09 +02:00
										 |  |  | 						<source>1.8</source> | 
					
						
							|  |  |  | 						<target>1.8</target> | 
					
						
							| 
									
										
										
										
											2016-10-05 00:12:42 -04:00
										 |  |  | 					</configuration> | 
					
						
							|  |  |  | 				</plugin> | 
					
						
							|  |  |  | 				<plugin> | 
					
						
							|  |  |  | 					<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 					<artifactId>maven-war-plugin</artifactId> | 
					
						
							| 
									
										
										
										
											2016-12-07 14:51:06 +02:00
										 |  |  | 					<version>${maven-war-plugin.version}</version> | 
					
						
							| 
									
										
										
										
											2016-10-05 00:12:42 -04:00
										 |  |  | 					<configuration> | 
					
						
							|  |  |  | 						<warSourceDirectory>src/main/webapp</warSourceDirectory> | 
					
						
							|  |  |  | 						<warName>spring-jms</warName> | 
					
						
							|  |  |  | 						<failOnMissingWebXml>false</failOnMissingWebXml> | 
					
						
							|  |  |  | 					</configuration> | 
					
						
							|  |  |  | 				</plugin> | 
					
						
							|  |  |  | 			</plugins> | 
					
						
							|  |  |  | 		</pluginManagement> | 
					
						
							| 
									
										
										
										
											2016-10-12 12:08:13 -04:00
										 |  |  | 		<plugins> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 				<artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  | 				<configuration> | 
					
						
							|  |  |  | 					<source>1.8</source> | 
					
						
							|  |  |  | 					<target>1.8</target> | 
					
						
							|  |  |  | 				</configuration> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 		</plugins> | 
					
						
							|  |  |  | 		<finalName>spring-jms</finalName> | 
					
						
							| 
									
										
										
										
											2016-10-05 00:12:42 -04:00
										 |  |  | 	</build> | 
					
						
							| 
									
										
										
										
											2016-10-12 12:08:13 -04:00
										 |  |  | </project> |