jguru-shared-messaging-jms-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.jguru.shared.messaging.test.jms</groupId> <artifactId>jguru-shared-messaging-jms-test</artifactId> <version>2.2.0</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- +=============================================== --> <!-- | Section 1: Project information --> <!-- +=============================================== --> <parent> <groupId>se.jguru.codestyle.poms.kotlin</groupId> <artifactId>jguru-codestyle-kotlin-api-parent</artifactId> <version>3.2.0</version> <relativePath /> </parent> <groupId>se.jguru.shared.messaging.test.jms</groupId> <artifactId>jguru-shared-messaging-jms-test</artifactId> <version>2.2.0</version> <packaging>jar</packaging> <name>${project.artifactId}</name> <url>${site.top.url}/${path.in.reactor}</url> <description>jGuru Shared: Messaging JMS Test (${project.packaging}, version ${project.version})</description> <properties> <!-- Define the name and type of this reactor --> <path.in.reactor>messaging/messaging-jms-test</path.in.reactor> <reactor.name>jguru-shared</reactor.name> <owasp.failOnError>true</owasp.failOnError> </properties> <!-- +=============================================== --> <!-- | Section 2: Dependency (management) settings --> <!-- +=============================================== --> <dependencyManagement> <dependencies> <dependency> <groupId>se.jguru.shared.bom</groupId> <artifactId>jguru-shared-bom</artifactId> <version>2.2.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Internal dependencies. --> <!-- External dependencies. --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit5</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>artemis-jakarta-server</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <!-- Test-scope dependencies. --> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-unit-tests</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- +=============================================== --> <!-- | Section 3: Build settings --> <!-- +=============================================== --> <!-- +=============================================== --> <!-- | Section 4: External systems --> <!-- +=============================================== --> <!-- Define the Continuous Build server address. --> <ciManagement> <system>TravisCI</system> <url>https://travis-ci.org/lennartj/jguru-shared</url> </ciManagement> <!-- Define the issue management system. --> <issueManagement> <system>github</system> <url>https://github.com/lennartj/jguru-shared/issues</url> </issueManagement> <!-- Define connections for Maven's VCS integration. --> <scm> <connection>${scm.connection.url}</connection> <developerConnection>${scm.devConnection.url}</developerConnection> <url>${scm.url}</url> <tag>jguru-shared-2.2.0</tag> </scm> </project>