comparison spring-jms-playground/pom.xml @ 15:ad77abd85976

playground for spring boot JMS handling
author Dirk Olmes <dirk.olmes@codedo.de>
date Thu, 10 Sep 2020 08:44:20 +0200
parents
children 8504317b9a09
comparison
equal deleted inserted replaced
14:4594ff529ab1 15:ad77abd85976
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>2.1.16.RELEASE</version>
9 <relativePath/>
10 </parent>
11 <groupId>de.comline</groupId>
12 <artifactId>spring-jms-playground</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>Spring boot JMS playground</name>
15
16 <properties>
17 <jdk.version.source>1.8</jdk.version.source>
18 <jdk.version.target>1.8</jdk.version.target>
19 <java.version>${jdk.version.source}</java.version>
20 </properties>
21
22 <build>
23 <plugins>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-compiler-plugin</artifactId>
27 <configuration>
28 <verbose>true</verbose>
29 <source>${jdk.version.source}</source>
30 <target>${jdk.version.target}</target>
31 </configuration>
32 </plugin>
33 <plugin>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-maven-plugin</artifactId>
36 </plugin>
37 </plugins>
38 </build>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-activemq</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.junit.jupiter</groupId>
48 <artifactId>junit-jupiter</artifactId>
49 <version>5.6.2</version>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
53 <groupId>org.hamcrest</groupId>
54 <artifactId>hamcrest</artifactId>
55 <version>2.2</version>
56 <scope>test</scope>
57 </dependency>
58 </dependencies>
59 </project>