Skip to content

Commit b7051be

Browse files
OKafka Starter (#119)
Signed-off-by: Anders Swanson <anders.swanson@oracle.com>
1 parent bcbd030 commit b7051be

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- Copyright (c) 2024, Oracle and/or its affiliates. -->
3+
<!-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. -->
4+
<project xmlns="http://maven.apache.org/POM/4.0.0"
5+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
7+
<modelVersion>4.0.0</modelVersion>
8+
<parent>
9+
<artifactId>oracle-spring-boot-starters</artifactId>
10+
<groupId>com.oracle.database.spring</groupId>
11+
<version>24.2.0</version>
12+
<relativePath>../pom.xml</relativePath>
13+
</parent>
14+
15+
<artifactId>oracle-spring-boot-starter-okafka</artifactId>
16+
<version>24.2.0</version>
17+
18+
<name>Oracle Spring Boot Starter - OKafka</name>
19+
<description>Spring Boot Starter for Oracle Database Kafka API</description>
20+
<url>https://github.com/oracle/spring-cloud-oracle/tree/main/database/starters/oracle-spring-boot-starter-okafka</url>
21+
22+
<organization>
23+
<name>Oracle America, Inc.</name>
24+
<url>https://www.oracle.com</url>
25+
</organization>
26+
27+
<developers>
28+
<developer>
29+
<name>Oracle</name>
30+
<email>obaas_ww at oracle.com</email>
31+
<organization>Oracle America, Inc.</organization>
32+
<organizationUrl>https://www.oracle.com</organizationUrl>
33+
</developer>
34+
</developers>
35+
36+
<licenses>
37+
<license>
38+
<name>The Universal Permissive License (UPL), Version 1.0</name>
39+
<url>https://oss.oracle.com/licenses/upl/</url>
40+
<distribution>repo</distribution>
41+
</license>
42+
</licenses>
43+
44+
<scm>
45+
<url>https://github.com/oracle/spring-cloud-oracle</url>
46+
<connection>scm:git:https://github.com/oracle/spring-cloud-oracle.git</connection>
47+
<developerConnection>scm:git:git@github.com:oracle/spring-cloud-oracle.git</developerConnection>
48+
</scm>
49+
50+
<dependencies>
51+
<dependency>
52+
<groupId>com.oracle.database.messaging</groupId>
53+
<artifactId>okafka</artifactId>
54+
</dependency>
55+
</dependencies>
56+
</project>

database/starters/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
<module>oracle-spring-boot-starter-aqjms</module>
5858
<module>oracle-spring-boot-starter-json-collections</module>
5959
<module>oracle-spring-boot-starter-samples</module>
60+
<module>oracle-spring-boot-starter-okafka</module>
6061
</modules>
6162

6263
<properties>
@@ -70,6 +71,7 @@
7071
<maven.compiler.target>${java.version}</maven.compiler.target>
7172
<maven.compiler.source>${java.version}</maven.compiler.source>
7273

74+
<okafka.version>23.5.0.0</okafka.version>
7375
<ojdbc.version>23.5.0.24.07</ojdbc.version>
7476
<oracledb-messaging.version>23.3.1.0</oracledb-messaging.version>
7577
<jta.version>2.0.1</jta.version>
@@ -193,6 +195,12 @@
193195
<version>${spring-boot-dependencies.version}</version>
194196
</dependency>
195197

198+
<dependency>
199+
<groupId>com.oracle.database.messaging</groupId>
200+
<artifactId>okafka</artifactId>
201+
<version>${okafka.version}</version>
202+
</dependency>
203+
196204
<dependency>
197205
<groupId>com.oracle.database.soda</groupId>
198206
<artifactId>orajsoda</artifactId>

0 commit comments

Comments
 (0)