File tree Expand file tree Collapse file tree 19 files changed +44
-44
lines changed
spring-cli/projects/obaas
oracle-spring-boot-starter-aqjms
src/main/java/com/oracle/spring/aqjms
oracle-spring-boot-starter-json-collections
oracle-spring-boot-starter-okafka
oracle-spring-boot-starter-samples
oracle-spring-boot-sample-json-duality
oracle-spring-boot-sample-json-events
oracle-spring-boot-sample-okafka
oracle-spring-boot-sample-txeventqjms
oracle-spring-boot-sample-ucp-jpa
oracle-spring-boot-sample-wallet
oracle-spring-boot-starter-ucp
oracle-spring-boot-starter-wallet
spring-cloud-oci/docs/src/main/asciidoc Expand file tree Collapse file tree 19 files changed +44
-44
lines changed Original file line number Diff line number Diff line change 12
12
<groupId >com.example</groupId >
13
13
<artifactId >obaas-rest-service</artifactId >
14
14
<version >0.0.1-SNAPSHOT</version >
15
-
15
+
16
16
<name >obaas-rest-service</name >
17
17
<description >RESTful web application for Oracle Backend for Spring Boot and Microservices</description >
18
-
18
+
19
19
<properties >
20
20
<java .version>17</java .version>
21
- <oracle-springboot-starter .version>24.3 .0</oracle-springboot-starter .version>
21
+ <oracle-springboot-starter .version>24.4 .0</oracle-springboot-starter .version>
22
22
<liquibase .version>4.30.0</liquibase .version>
23
23
<datasource-micrometer-spring-boot .version>1.0.5</datasource-micrometer-spring-boot .version>
24
24
</properties >
25
-
25
+
26
26
<dependencies >
27
27
<!-- Spring WebMVC for REST support. -->
28
28
<dependency >
51
51
<version >${oracle-springboot-starter.version} </version >
52
52
<type >pom</type >
53
53
</dependency >
54
-
54
+
55
55
<!-- This dependency allows you to use Liquibase to manage your schema and -->
56
56
<!-- reference data. Enable it in the application.yaml and edit the files -->
57
57
<!-- in src/main/resources/db/changelog to add your definitions and data. -->
61
61
<groupId >org.liquibase</groupId >
62
62
<artifactId >liquibase-core</artifactId >
63
63
<version >${liquibase.version} </version >
64
- </dependency >
64
+ </dependency >
65
65
66
66
<!-- This enables Spring Actuator which provides monitoring, metrics, etc. -->
67
67
<dependency >
74
74
<artifactId >datasource-micrometer-spring-boot</artifactId >
75
75
<version >${datasource-micrometer-spring-boot.version} </version >
76
76
</dependency >
77
-
77
+
78
78
<!-- Spring test support. -->
79
79
<dependency >
80
80
<groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >oracle-spring-boot-starters</artifactId >
10
10
<groupId >com.oracle.database.spring</groupId >
11
- <version >24.3 .0</version >
11
+ <version >24.4 .0</version >
12
12
<relativePath >../pom.xml</relativePath >
13
13
</parent >
14
14
15
15
<artifactId >oracle-spring-boot-starter-aqjms</artifactId >
16
- <version >24.3 .0</version >
16
+ <version >24.4 .0</version >
17
17
<packaging >jar</packaging >
18
18
19
19
<!-- Project Information -->
Original file line number Diff line number Diff line change 36
36
public class AqJmsAutoConfiguration {
37
37
@ Bean
38
38
@ ConditionalOnMissingBean
39
- @ ConditionalOnBean (DataSource . class )
39
+ @ ConditionalOnBean (name = "dataSource" )
40
40
public ConnectionFactory aqJmsConnectionFactory (DataSource ds ) {
41
41
ConnectionFactory connectionFactory = null ;
42
42
try {
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >oracle-spring-boot-starters</artifactId >
10
10
<groupId >com.oracle.database.spring</groupId >
11
- <version >24.3 .0</version >
11
+ <version >24.4 .0</version >
12
12
<relativePath >../pom.xml</relativePath >
13
13
</parent >
14
14
15
15
<artifactId >oracle-spring-boot-starter-json-collections</artifactId >
16
- <version >24.3 .0</version >
16
+ <version >24.4 .0</version >
17
17
18
18
<name >Oracle Spring Boot Starter - JSON Collections</name >
19
19
<description >Spring Boot Starter for Oracle Database JSON colections</description >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >oracle-spring-boot-starters</artifactId >
10
10
<groupId >com.oracle.database.spring</groupId >
11
- <version >24.3 .0</version >
11
+ <version >24.4 .0</version >
12
12
<relativePath >../pom.xml</relativePath >
13
13
</parent >
14
14
15
15
<artifactId >oracle-spring-boot-starter-okafka</artifactId >
16
- <version >24.3 .0</version >
16
+ <version >24.4 .0</version >
17
17
18
18
<name >Oracle Spring Boot Starter - Kafka Java Client for Oracle Database Transactional Event Queues</name >
19
19
<description >Spring Boot Starter for the Kafka Java Client for Oracle Database Transactional Event Queues</description >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >oracle-spring-boot-starter-samples</artifactId >
10
10
<groupId >com.oracle.database.spring</groupId >
11
- <version >24.3 .0</version >
11
+ <version >24.4 .0</version >
12
12
<relativePath >../pom.xml</relativePath >
13
13
</parent >
14
14
15
15
<artifactId >oracle-spring-boot-sample-json-duality</artifactId >
16
- <version >24.3 .0</version >
16
+ <version >24.4 .0</version >
17
17
18
18
<name >Oracle Spring Boot Starter - JSON Relational Duality Views Sample</name >
19
19
<description >Oracle Spring Boot Starter Sample for JSON Relational Duality Views</description >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >oracle-spring-boot-starter-samples</artifactId >
10
10
<groupId >com.oracle.database.spring</groupId >
11
- <version >24.3 .0</version >
11
+ <version >24.4 .0</version >
12
12
<relativePath >../pom.xml</relativePath >
13
13
</parent >
14
14
15
15
<artifactId >oracle-spring-boot-sample-json-events</artifactId >
16
- <version >24.3 .0</version >
16
+ <version >24.4 .0</version >
17
17
18
18
<name >Oracle Spring Boot Starter - JSON Events Sample</name >
19
19
<description >Oracle Spring Boot Starter Sample for JSON Events</description >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >oracle-spring-boot-starter-samples</artifactId >
10
10
<groupId >com.oracle.database.spring</groupId >
11
- <version >24.3 .0</version >
11
+ <version >24.4 .0</version >
12
12
<relativePath >../pom.xml</relativePath >
13
13
</parent >
14
14
15
15
<artifactId >oracle-spring-boot-sample-okafka</artifactId >
16
- <version >24.3 .0</version >
16
+ <version >24.4 .0</version >
17
17
18
18
<name >Oracle Spring Boot Starter - OKafka Sample</name >
19
19
<description >Oracle Spring Boot Starter Sample for OKafka</description >
Original file line number Diff line number Diff line change @@ -61,5 +61,5 @@ To use Oracle Spring Boot Starter for TxEventQ and JMS for your Spring Boot appl
61
61
or if you are using Gradle:
62
62
63
63
``` text
64
- implementation 'com.oracle.database.spring:oracle-spring-boot-starter-aqjms:24.3 .0'
64
+ implementation 'com.oracle.database.spring:oracle-spring-boot-starter-aqjms:24.4 .0'
65
65
```
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<artifactId >oracle-spring-boot-sample-txeventqjms</artifactId >
9
9
<groupId >com.oracle.database.spring</groupId >
10
- <version >24.3 .0</version >
10
+ <version >24.4 .0</version >
11
11
<relativePath >../pom.xml</relativePath >
12
12
</parent >
13
13
14
14
<artifactId >oracle-spring-boot-sample-txeventqjms-consumer</artifactId >
15
- <version >24.3 .0</version >
15
+ <version >24.4 .0</version >
16
16
17
17
<name >Oracle Spring Boot Starter - Transactional Event Queue JMS Sample - Consumer </name >
18
18
<description >Oracle Spring Boot Starter - Transactional Event Queue JMS Sample - Consumer</description >
You can’t perform that action at this time.
0 commit comments