78 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <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>
 | |
| 		<springframework.version>4.3.4.RELEASE</springframework.version>
 | |
| 		<activemq.version>5.14.1</activemq.version>
 | |
| 		<junit.version>4.12</junit.version>
 | |
| 		
 | |
| 		<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
 | |
| 		<maven-war-plugin.version>2.6</maven-war-plugin.version>
 | |
| 	</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>
 | |
| 		<dependency>
 | |
| 			<groupId>junit</groupId>
 | |
| 			<artifactId>junit</artifactId>
 | |
| 			<version>${junit.version}</version>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 	</dependencies>
 | |
| 
 | |
| 	<build>
 | |
| 		<pluginManagement>
 | |
| 			<plugins>
 | |
| 				<plugin>
 | |
| 					<groupId>org.apache.maven.plugins</groupId>
 | |
| 					<artifactId>maven-compiler-plugin</artifactId>
 | |
| 					<version>${maven-compiler-plugin.version}</version>
 | |
| 					<configuration>
 | |
| 						<source>1.8</source>
 | |
| 						<target>1.8</target>
 | |
| 					</configuration>
 | |
| 				</plugin>
 | |
| 				<plugin>
 | |
| 					<groupId>org.apache.maven.plugins</groupId>
 | |
| 					<artifactId>maven-war-plugin</artifactId>
 | |
| 					<version>${maven-war-plugin.version}</version>
 | |
| 					<configuration>
 | |
| 						<warSourceDirectory>src/main/webapp</warSourceDirectory>
 | |
| 						<warName>spring-jms</warName>
 | |
| 						<failOnMissingWebXml>false</failOnMissingWebXml>
 | |
| 					</configuration>
 | |
| 				</plugin>
 | |
| 			</plugins>
 | |
| 		</pluginManagement>
 | |
| 		<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>
 | |
| 	</build>
 | |
| </project>
 |