nats-embedded
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>np.com.madanpokharel.embed</groupId>
<artifactId>nats-embedded</artifactId>
<version>2.1.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2022 Madan Pokharel
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>nats-embedded</name>
<description>Embedded Nats and Nats Streaming(https://nats.io) server for integration testing</description>
<url>https://github.com/madansp/nats-embedded</url>
<licenses>
<license>
<name>Apache-2.0 License</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Madan Pokharel</name>
<email>info@madanpokharel.com.np</email>
</developer>
</developers>
<issueManagement>
<system>Github</system>
<url>https://github.com/madansp/nats-embedded/issues</url>
</issueManagement>
<ciManagement>
<system>Travis</system>
<url>https://travis-ci.com/madansp/nats-embedded</url>
</ciManagement>
<scm>
<connection>scm:git:https://github.com/madansp/nats-embedded.git</connection>
<developerConnection>scm:git:git@github.com:madansp/nats-embedded.git</developerConnection>
<url>https://github.com/madansp/nats-embedded</url>
<tag>HEAD</tag>
</scm>
<groupId>np.com.madanpokharel.embed</groupId>
<artifactId>nats-embedded</artifactId>
<version>2.1.3</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<flapdoodle.version>4.13.2</flapdoodle.version>
<commons.io.version>2.16.1</commons.io.version>
<jnats.version>2.20.0</jnats.version>
<jnats-streaming.version>2.2.3</jnats-streaming.version>
<junit.version>4.13.2</junit.version>
<hamcrest.version>1.3</hamcrest.version>
<protobuf-java.version>3.22.0</protobuf-java.version>
<de.flapdoodle.os.version>1.7.2</de.flapdoodle.os.version>
</properties>
<dependencies>
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.process</artifactId>
<version>${flapdoodle.version}</version>
</dependency>
<dependency>
<groupId>de.flapdoodle</groupId>
<artifactId>de.flapdoodle.os</artifactId>
<version>${de.flapdoodle.os.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>io.nats</groupId>
<artifactId>jnats</artifactId>
<version>${jnats.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.nats</groupId>
<artifactId>java-nats-streaming</artifactId>
<version>${jnats-streaming.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobuf-java.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>mavenRelease</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</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.8.0</version>
<configuration>
<defaultAuthor>Madan Pokharel</defaultAuthor>
<version>false</version>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>githubRelease</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Nats Embedded package</name>
<url>https://maven.pkg.github.com/madansp/nats-embedded</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>