annotate spring-jms-playground/pom.xml @ 19:fe6a57f7a2cf

Spring Cloud Config server
author Dirk Olmes <dirk.olmes@codedo.de>
date Thu, 17 Sep 2020 17:24:48 +0200
parents 8504317b9a09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
4 <modelVersion>4.0.0</modelVersion>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
5 <groupId>de.comline</groupId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
6 <artifactId>spring-jms-playground</artifactId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
7 <version>0.0.1-SNAPSHOT</version>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
8 <name>Spring boot JMS playground</name>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
9
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
10 <properties>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
11 <jdk.version.source>1.8</jdk.version.source>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
12 <jdk.version.target>1.8</jdk.version.target>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
13 <java.version>${jdk.version.source}</java.version>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
14 </properties>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
15
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
16 <build>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
17 <plugins>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
18 <plugin>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
19 <groupId>org.apache.maven.plugins</groupId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
20 <artifactId>maven-compiler-plugin</artifactId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
21 <configuration>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
22 <verbose>true</verbose>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
23 <source>${jdk.version.source}</source>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
24 <target>${jdk.version.target}</target>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
25 </configuration>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
26 </plugin>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
27 <plugin>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
28 <groupId>org.springframework.boot</groupId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
29 <artifactId>spring-boot-maven-plugin</artifactId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
30 </plugin>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
31 </plugins>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
32 </build>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
33
18
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
34 <dependencyManagement>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
35 <dependencies>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
36 <dependency>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
37 <groupId>org.springframework.boot</groupId>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
38 <artifactId>spring-boot-starter-parent</artifactId>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
39 <version>2.1.16.RELEASE</version>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
40 <type>pom</type>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
41 <scope>import</scope>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
42 </dependency>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
43 <dependency>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
44 <groupId>org.springframework.cloud</groupId>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
45 <artifactId>spring-cloud-dependencies</artifactId>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
46 <version>Greenwich.SR6</version>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
47 <type>pom</type>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
48 <scope>import</scope>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
49 </dependency>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
50 </dependencies>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
51 </dependencyManagement>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
52
15
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
53 <dependencies>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
54 <dependency>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
55 <groupId>org.springframework.boot</groupId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
56 <artifactId>spring-boot-starter-activemq</artifactId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
57 </dependency>
18
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
58 <dependency>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
59 <groupId>org.springframework.cloud</groupId>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
60 <artifactId>spring-cloud-starter-sleuth</artifactId>
8504317b9a09 Erweiterung um Sleuth, manuelle Konfiguration von Spring
Dirk Olmes <dirk.olmes@codedo.de>
parents: 15
diff changeset
61 </dependency>
15
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
62
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
63 <dependency>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
64 <groupId>org.junit.jupiter</groupId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
65 <artifactId>junit-jupiter</artifactId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
66 <version>5.6.2</version>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
67 <scope>test</scope>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
68 </dependency>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
69 <dependency>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
70 <groupId>org.hamcrest</groupId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
71 <artifactId>hamcrest</artifactId>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
72 <version>2.2</version>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
73 <scope>test</scope>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
74 </dependency>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
75 </dependencies>
ad77abd85976 playground for spring boot JMS handling
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
76 </project>