nats
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.amadeusitgroup.testcontainers</groupId>
<artifactId>nats</artifactId>
<version>1.0.9</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.amadeusitgroup.testcontainers</groupId>
<artifactId>nats</artifactId>
<version>1.0.9</version>
<packaging>jar</packaging>
<name>Testcontainers :: NATS</name>
<description>Testcontainers module for NATS messaging system</description>
<url>https://github.com/AmadeusITGroup/nats-testcontainers-java</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>amadeus</id>
<name>Amadeus</name>
<organization>Amadeus</organization>
<organizationUrl>https://amadeus.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/AmadeusITGroup/nats-testcontainers-java.git</connection>
<developerConnection>scm:git:ssh://github.com:AmadeusITGroup/nats-testcontainers-java.git</developerConnection>
<url>https://github.com/AmadeusITGroup/nats-testcontainers-java/tree/main</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>staging</id>
<url>file:./target/staging-deploy</url>
</snapshotRepository>
<repository>
<id>staging</id>
<url>file:./target/staging-deploy</url>
</repository>
</distributionManagement>
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<testcontainers.version>2.0.3</testcontainers.version>
<jnats.version>2.24.1</jnats.version>
<junit.version>5.11.3</junit.version>
<assertj.version>3.27.6</assertj.version>
<altDeploymentRepository>local::default::file:./target/staging-deploy</altDeploymentRepository>
</properties>
<dependencies>
<!-- Testcontainers core -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>${testcontainers.version}</version>
</dependency>
<!-- NATS Java Client (compile only - users provide their own) -->
<dependency>
<groupId>io.nats</groupId>
<artifactId>jnats</artifactId>
<version>${jnats.version}</version>
<scope>provided</scope>
</dependency>
<!-- Testing dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.17</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.14</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>