Skip to content

Rename of directory and pom.xml fixes #153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<artifactId>oracle-spring-boot-starter-samples</artifactId>
<groupId>com.oracle.database.spring</groupId>
<version>24.3.0</version>
<relativePath>../../pom.xml</relativePath>
<relativePath>../pom.xml</relativePath>
</parent>

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

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

<organization>
<name>Oracle America, Inc.</name>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2024, Oracle and/or its affiliates. -->
<!-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>oracle-spring-boot-starter-samples</artifactId>
<groupId>com.oracle.database.spring</groupId>
<version>24.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>oracle-spring-boot-sample-txeventqjms</artifactId>
<version>24.3.0</version>
<packaging>pom</packaging>

<name>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample</name>
<description>Oracle Spring Boot Starter - Transactional Event Queue JMS Sample</description>

<modules>
<module>consumer</module>
<module>producer</module>
</modules>

<build>
<pluginManagement>
<plugins>
<!-- Skip deploy of sample code-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<artifactId>oracle-spring-boot-starter-samples</artifactId>
<groupId>com.oracle.database.spring</groupId>
<version>24.3.0</version>
<relativePath>../../pom.xml</relativePath>
<relativePath>../pom.xml</relativePath>
</parent>

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

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

<organization>
<name>Oracle America, Inc.</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<module>oracle-spring-boot-sample-json-events</module>
<module>oracle-spring-boot-sample-okafka</module>
<module>oracle-spring-boot-sample-wallet</module>
<module>oracle-spring-boot-sample-txeventqjms</module>
</modules>

<build>
Expand Down
Loading