testcontainers-dapr
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.diagrid.dapr</groupId> <artifactId>testcontainers-dapr</artifactId> <version>0.10.14</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.diagrid.dapr</groupId> <artifactId>testcontainers-dapr</artifactId> <version>0.10.14</version> <name>Testcontainers :: Dapr Module</name> <description>Testcontainers :: Dapr Module</description> <packaging>jar</packaging> <url>https://github.com/diagridio/testcontainers-dapr</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Mauricio Salatino</name> <email>salaboy@gmail.com</email> <organization>Diagrid</organization> <organizationUrl>https://www.diagrid.io</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/diagridio/testcontainers-dapr.git</connection> <developerConnection>scm:git:https://github.com/diagridio/testcontainers-dapr.git</developerConnection> <url>https://github.com/diagridio/testcontainers-dapr</url> <tag>main</tag> </scm> <properties> <java.version>8</java.version> <snakeyaml.version>2.0</snakeyaml.version> <testcontainers.version>1.19.1</testcontainers.version> <daprsdk.version>1.10.0</daprsdk.version> <logback-classic.version>1.4.12</logback-classic.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <maven-javadoc-plugin.version>3.6.0</maven-javadoc-plugin.version> <jreleaser.version>1.8.0</jreleaser.version> <wiremock.version>3.0.1</wiremock.version> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${snakeyaml.version}</version> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>${testcontainers.version}</version> </dependency> <dependency> <groupId>io.dapr</groupId> <artifactId>dapr-sdk-springboot</artifactId> <version>${daprsdk.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback-classic.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock</artifactId> <version>${wiremock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <version>5.4.0</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <version>${jreleaser.version}</version> <configuration> <jreleaser> <project> <description>Dapr Testcontainer Module</description> <copyright>2023 Diagrid.io</copyright> <authors>Mauricio Salatino</authors> <license>APACHE-2.0</license> </project> <signing> <active>ALWAYS</active> <armored>true</armored> </signing> <deploy> <maven> <nexus2> <maven-central> <active>ALWAYS</active> <url>https://s01.oss.sonatype.org/service/local</url> <snapshotUrl>https://s01.oss.sonatype.org/content/repositories/snapshots</snapshotUrl> <closeRepository>true</closeRepository> <releaseRepository>true</releaseRepository> <stagingRepositories>target/staging-deploy</stagingRepositories> </maven-central> </nexus2> </maven> </deploy> </jreleaser> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>