Skip to content

Commit 363a862

Browse files
authored
Rename of directory and pom.xml fixes (#153)
1 parent 255ec39 commit 363a862

File tree

15 files changed

+48
-6
lines changed

15 files changed

+48
-6
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
<artifactId>oracle-spring-boot-starter-samples</artifactId>
99
<groupId>com.oracle.database.spring</groupId>
1010
<version>24.3.0</version>
11-
<relativePath>../../pom.xml</relativePath>
11+
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>oracle-spring-boot-sample-txeventqjms-consumer</artifactId>
1515
<version>24.3.0</version>
1616

17-
<name>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample</name>
18-
<description>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample</description>
17+
<name>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample - Consumer </name>
18+
<description>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample - Consumer</description>
1919

2020
<organization>
2121
<name>Oracle America, Inc.</name>
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
<parent>
8+
<artifactId>oracle-spring-boot-starter-samples</artifactId>
9+
<groupId>com.oracle.database.spring</groupId>
10+
<version>24.3.0</version>
11+
<relativePath>../pom.xml</relativePath>
12+
</parent>
13+
14+
<artifactId>oracle-spring-boot-sample-txeventqjms</artifactId>
15+
<version>24.3.0</version>
16+
<packaging>pom</packaging>
17+
18+
<name>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample</name>
19+
<description>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample</description>
20+
21+
<modules>
22+
<module>consumer</module>
23+
<module>producer</module>
24+
</modules>
25+
26+
<build>
27+
<pluginManagement>
28+
<plugins>
29+
<!-- Skip deploy of sample code-->
30+
<plugin>
31+
<groupId>org.apache.maven.plugins</groupId>
32+
<artifactId>maven-deploy-plugin</artifactId>
33+
<configuration>
34+
<skip>true</skip>
35+
</configuration>
36+
</plugin>
37+
</plugins>
38+
</pluginManagement>
39+
</build>
40+
41+
</project>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
<artifactId>oracle-spring-boot-starter-samples</artifactId>
99
<groupId>com.oracle.database.spring</groupId>
1010
<version>24.3.0</version>
11-
<relativePath>../../pom.xml</relativePath>
11+
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>oracle-spring-boot-sample-txeventqjms-producer</artifactId>
1515
<version>24.3.0</version>
1616

17-
<name>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample</name>
18-
<description>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample</description>
17+
<name>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample - Producer</name>
18+
<description>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample - Producer</description>
1919

2020
<organization>
2121
<name>Oracle America, Inc.</name>

database/starters/oracle-spring-boot-starter-samples/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
<module>oracle-spring-boot-sample-json-events</module>
5555
<module>oracle-spring-boot-sample-okafka</module>
5656
<module>oracle-spring-boot-sample-wallet</module>
57+
<module>oracle-spring-boot-sample-txeventqjms</module>
5758
</modules>
5859

5960
<build>

0 commit comments

Comments
 (0)