concord-compati-it
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.walmartlabs.concord.it</groupId> <artifactId>concord-compati-it</artifactId> <version>2.5.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.walmartlabs.concord.it</groupId> <artifactId>parent</artifactId> <version>2.5.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>concord-compati-it</artifactId> <packaging>jar</packaging> <properties> <!-- version of Agent to use in tests --> <!-- should be one or more release versions behind the current version --> <prev.concord.version>1.55.0</prev.concord.version> <server.image>walmartlabs/concord-server</server.image> <prev.agent.image>walmartlabs/concord-agent:${prev.concord.version}</prev.agent.image> <ryuk.image>quay.io/testcontainers/ryuk:0.2.3</ryuk.image> </properties> <dependencies> <dependency> <groupId>ca.ibodrov.concord</groupId> <artifactId>testcontainers-concord-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ca.ibodrov.concord</groupId> <artifactId>testcontainers-concord-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-client</artifactId> <scope>test</scope> </dependency> <!-- LOCAL mode support --> <dependency> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord.server</groupId> <artifactId>concord-server</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-agent</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <filtering>false</filtering> <directory>${project.basedir}/src/test/resources</directory> <includes> <include>**/*</include> </includes> </resource> <resource> <filtering>true</filtering> <directory>${project.basedir}/src/test/filtered-resources</directory> <includes> <include>**/*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <skipTests>${skip.it.tests}</skipTests> <systemProperties> <server.image>${server.image}</server.image> <agent.image>${prev.agent.image}</agent.image> </systemProperties> </configuration> </plugin> <!-- LOCAL mode support --> <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> <classifier>jar-with-dependencies</classifier> <destFileName>runner-v1.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>