citrus-jms
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-jms</artifactId> <version>4.3.3</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>citrus-endpoints</artifactId> <groupId>org.citrusframework</groupId> <version>4.3.3</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>citrus-jms</artifactId> <name>Citrus :: Endpoints :: JMS</name> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <executions> <execution> <goals> <goal>xjc</goal> </goals> </execution> </executions> <configuration> <extension>true</extension> <sourceType>xmlschema</sourceType> <sources> <source>src/main/resources/org/citrusframework/schema/citrus-jms-config.xsd</source> <source>src/main/resources/org/citrusframework/schema/citrus-jms-testcase.xsd</source> </sources> <xjbSources> <xjbSource>src/main/resources/binding.xjb</xjbSource> </xjbSources> <clearOutputDir>true</clearOutputDir> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-spring</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jms</artifactId> </dependency> <dependency> <groupId>jakarta.jms</groupId> <artifactId>jakarta.jms-api</artifactId> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> </dependency> <!-- SOAP WebService support --> <dependency> <groupId>com.sun.xml.messaging.saaj</groupId> <artifactId>saaj-impl</artifactId> </dependency> <dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> <!-- Test scoped dependencies --> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-jms</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>artemis-jakarta-server</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.xbean</groupId> <artifactId>xbean-spring</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-test-support</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-testng</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-groovy</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-yaml</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-xml</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-spring-integration</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-validation-xml</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-validation-groovy</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-validation-text</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.citrusframework</groupId> <artifactId>citrus-validation-hamcrest</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> </project>