testcontainers-concord-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.ibodrov.concord</groupId> <artifactId>testcontainers-concord-core</artifactId> <version>0.0.25</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> <parent> <groupId>ca.ibodrov.concord</groupId> <artifactId>testcontainers-concord</artifactId> <version>0.0.25</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>testcontainers-concord-core</artifactId> <version>0.0.25</version> <packaging>takari-jar</packaging> <dependencies> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-client</artifactId> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-common</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <!-- testcontainers bring their own dependency on junit which we're trying to avoid in this module --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>provided</scope> </dependency> <!-- immutables --> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> <scope>provided</scope> </dependency> <!-- local mode support --> <dependency> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server-impl</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-agent</artifactId> <version>${concord.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-lifecycle-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-runner-jar</id> <phase>process-test-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <overWriteIfNewer>true</overWriteIfNewer> <artifactItems> <artifactItem> <groupId>com.walmartlabs.concord.runtime.v1</groupId> <artifactId>concord-runtime-impl-v1</artifactId> <version>${concord.version}</version> <classifier>jar-with-dependencies</classifier> <destFileName>runner-v1.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>