concord-runtime-v2-it
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.walmartlabs.concord.it</groupId> <artifactId>concord-runtime-v2-it</artifactId> <version>2.25.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.25.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>concord-runtime-v2-it</artifactId> <packaging>jar</packaging> <properties> <it.local.mode>false</it.local.mode> <db.image>library/postgres:10</db.image> <server.image>walmartlabs/concord-server</server.image> <agent.image>walmartlabs/concord-agent</agent.image> <ryuk.image>testcontainers/ryuk:0.6.0</ryuk.image> <sshd.image>testcontainers/sshd:1.2.0</sshd.image> </properties> <dependencies> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-client2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-common</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-sdk</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord.it</groupId> <artifactId>concord-common-it</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.icegreen</groupId> <artifactId>greenmail</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.icegreen</groupId> <artifactId>greenmail-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <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>com.sun.mail</groupId> <artifactId>javax.mail</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wiremock</groupId> <artifactId>wiremock-jetty12</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <!-- to test the scripting feature --> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <type>pom</type> <scope>test</scope> </dependency> <!-- Node Roster stuff --> <dependency> <groupId>com.walmartlabs.concord.server.plugins.noderoster</groupId> <artifactId>concord-noderoster-plugin-client2</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> <it.local.mode>${it.local.mode}</it.local.mode> <db.image>${db.image}</db.image> <server.image>${server.image}</server.image> <agent.image>${agent.image}</agent.image> </systemProperties> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>local</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <it.local.mode>true</it.local.mode> </properties> <dependencies> <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> <plugins> <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.v2</groupId> <artifactId>concord-runner-v2</artifactId> <classifier>jar-with-dependencies</classifier> <destFileName>runner-v2.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>