File tree 8 files changed +24
-19
lines changed
spring-jms-integration-gateway
spring-jms-message-converter
spring-jms-message-selector
8 files changed +24
-19
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ sudo: false
3
3
install : true
4
4
5
5
jdk :
6
- - oraclejdk8
6
+ - openjdk11
7
7
8
8
addons :
9
9
sonarqube :
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
5
<modelVersion >4.0.0</modelVersion >
5
6
14
15
<parent >
15
16
<groupId >org.springframework.boot</groupId >
16
17
<artifactId >spring-boot-starter-parent</artifactId >
17
- <version >2.1.1 .RELEASE</version >
18
+ <version >2.1.5 .RELEASE</version >
18
19
<relativePath /><!-- lookup parent from repository -->
19
20
</parent >
20
21
21
22
<properties >
22
- <java .version>1.8 </java .version>
23
+ <java .version>11 </java .version>
23
24
</properties >
24
25
25
26
<dependencies >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
5
<modelVersion >4.0.0</modelVersion >
5
6
14
15
<parent >
15
16
<groupId >org.springframework.boot</groupId >
16
17
<artifactId >spring-boot-starter-parent</artifactId >
17
- <version >2.1.1 .RELEASE</version >
18
+ <version >2.1.5 .RELEASE</version >
18
19
<relativePath /><!-- lookup parent from repository -->
19
20
</parent >
20
21
21
22
<properties >
22
- <java .version>1.8 </java .version>
23
+ <java .version>11 </java .version>
23
24
</properties >
24
25
25
26
<dependencies >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
5
<modelVersion >4.0.0</modelVersion >
5
6
14
15
<parent >
15
16
<groupId >org.springframework.boot</groupId >
16
17
<artifactId >spring-boot-starter-parent</artifactId >
17
- <version >2.1.1 .RELEASE</version >
18
+ <version >2.1.5 .RELEASE</version >
18
19
<relativePath /><!-- lookup parent from repository -->
19
20
</parent >
20
21
21
22
<properties >
22
- <java .version>1.8 </java .version>
23
+ <java .version>11 </java .version>
23
24
</properties >
24
25
25
26
<dependencies >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
5
<modelVersion >4.0.0</modelVersion >
5
6
14
15
<parent >
15
16
<groupId >org.springframework.boot</groupId >
16
17
<artifactId >spring-boot-starter-parent</artifactId >
17
- <version >2.1.1 .RELEASE</version >
18
+ <version >2.1.5 .RELEASE</version >
18
19
<relativePath /><!-- lookup parent from repository -->
19
20
</parent >
20
21
21
22
<properties >
22
- <java .version>1.8 </java .version>
23
+ <java .version>11 </java .version>
23
24
</properties >
24
25
25
26
<dependencies >
Original file line number Diff line number Diff line change 4
4
5
5
A detailed step-by-step tutorial on how to implement a message selector using Spring JMS and Spring Boot.
6
6
7
- [ https://codenotfound.com/spring-jms-boot-configuration -example.html ] ( https://codenotfound.com/spring-jms-message-selector-example.html )
7
+ [ https://codenotfound.com/spring-jms-message-selector -example.html ] ( https://codenotfound.com/spring-jms-message-selector-example.html )
Original file line number Diff line number Diff line change 14
14
<parent >
15
15
<groupId >org.springframework.boot</groupId >
16
16
<artifactId >spring-boot-starter-parent</artifactId >
17
- <version >2.1.1 .RELEASE</version >
17
+ <version >2.1.5 .RELEASE</version >
18
18
<relativePath /><!-- lookup parent from repository -->
19
19
</parent >
20
20
21
21
<properties >
22
- <java .version>1.8 </java .version>
22
+ <java .version>11 </java .version>
23
23
</properties >
24
24
25
25
<dependencies >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
5
<modelVersion >4.0.0</modelVersion >
5
6
14
15
<parent >
15
16
<groupId >org.springframework.boot</groupId >
16
17
<artifactId >spring-boot-starter-parent</artifactId >
17
- <version >2.1.1 .RELEASE</version >
18
+ <version >2.1.5 .RELEASE</version >
18
19
<relativePath /><!-- lookup parent from repository -->
19
20
</parent >
20
21
21
22
<properties >
22
- <java .version>1.8 </java .version>
23
+ <java .version>11 </java .version>
23
24
</properties >
24
25
25
26
<dependencies >
You can’t perform that action at this time.
0 commit comments