integration-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.ibodrov.mica</groupId> <artifactId>integration-tests</artifactId> <version>0.0.29</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.mica</groupId> <artifactId>mica</artifactId> <version>0.0.29</version> </parent> <artifactId>integration-tests</artifactId> <dependencies> <dependency> <groupId>ca.ibodrov.mica</groupId> <artifactId>mica-concord-server-plugin</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ca.ibodrov.mica</groupId> <artifactId>mica-concord-task</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ca.ibodrov.concord</groupId> <artifactId>webapp-plugin</artifactId> <scope>provided</scope> </dependency> <!-- we need concord-server/dist for the default config --> <dependency> <groupId>com.walmartlabs.concord.it</groupId> <artifactId>testing-concord-server</artifactId> <version>${concord.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.walmartlabs.concord</groupId> <artifactId>concord-client2</artifactId> <version>${concord.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>localstack</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <filtering>false</filtering> <directory>${project.basedir}/src/main/resources</directory> <includes> <include>**/*</include> </includes> </resource> <resource> <filtering>true</filtering> <directory>${project.basedir}/src/main/filtered-resources</directory> <includes> <include>**/*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>io.github.git-commit-id</groupId> <artifactId>git-commit-id-maven-plugin</artifactId> <executions> <execution> <id>get-the-git-infos</id> <phase>generate-resources</phase> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <dotGitDirectory>${maven.multiModuleProjectDirectory}/.git</dotGitDirectory> <generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFilename>${project.build.outputDirectory}/ca/ibodrov/mica/its/git.properties</generateGitPropertiesFilename> </configuration> </plugin> <plugin> <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <executions> <execution> <id>check-format</id> <goals> <goal>validate</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy</id> <phase>process-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}/deps</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>