-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
94 changed files
with
1,926 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.quarkiverse.artemis</groupId> | ||
<artifactId>quarkus-artemis-integration-tests-parent</artifactId> | ||
<version>999-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>quarkus-integration-test-artemis-camel-jms-parent</artifactId> | ||
<name>Quarkus - Artemis - Integration Tests - Camel JMS Parent</name> | ||
<description>The Apache ActiveMQ Artemis Camel JMS integration tests parent module</description> | ||
|
||
<packaging>pom</packaging> | ||
<modules> | ||
<module>with-default</module> | ||
<module>with-default-and-named</module> | ||
<module>with-external</module> | ||
<module>with-named</module> | ||
<module>with-named-and-external</module> | ||
</modules> | ||
|
||
<dependencyManagement> | ||
|
||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<!-- Artemis --> | ||
<dependency> | ||
<groupId>io.quarkiverse.artemis</groupId> | ||
<artifactId>quarkus-artemis-jms</artifactId> | ||
</dependency> | ||
|
||
<!-- Camel Quarkus --> | ||
<dependency> | ||
<groupId>org.apache.camel.quarkus</groupId> | ||
<artifactId>camel-quarkus-jms</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
15 changes: 15 additions & 0 deletions
15
integration-tests/camel-jms/with-default-and-named/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.quarkiverse.artemis</groupId> | ||
<artifactId>quarkus-integration-test-artemis-camel-jms-parent</artifactId> | ||
<version>999-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>quarkus-integration-test-artemis-camel-jms-with-default-and-named</artifactId> | ||
<name>Quarkus - Artemis - Integration Tests - Camel JMS - With default and named configuration</name> | ||
<description>The Apache ActiveMQ Artemis Camel JMS integration tests with default and named configuration module</description> | ||
</project> |
Oops, something went wrong.