volt-testcontainer-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.voltdb</groupId> <artifactId>volt-testcontainer-test</artifactId> <version>1.4.1</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>org.voltdb</groupId> <artifactId>volt-testcontainer-module</artifactId> <version>1.4.1</version> </parent> <artifactId>volt-testcontainer-test</artifactId> <name>VoltDB TestContainer Tests</name> <properties> <maven.deploy.skip>true</maven.deploy.skip> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <mavenPluginVersion>3.3.0</mavenPluginVersion> </properties> <dependencies> <dependency> <groupId>org.voltdb</groupId> <artifactId>volt-testcontainer</artifactId> <version>${project.version}</version> </dependency> <!-- we use released client and everything non volt code so that we can build this first --> <dependency> <groupId>org.voltdb</groupId> <artifactId>voltdbclient</artifactId> <version>14.2.0</version> </dependency> <dependency> <groupId>org.voltdb</groupId> <artifactId>volt-voter-procedures</artifactId> <version>${project.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.voltdb/voltdb --> <!-- This should be good enough to compile a VoltProcedure class --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>${junit5.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>${junit-platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-engine</artifactId> <version>${junit-platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4jVersion}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4jVersion}</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.12.7</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <!-- Separates the unit tests from the integration tests. --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.1.2</version> <configuration> <!-- Skip the default running of this plug-in (or everything is run twice...see below) --> <!-- Show 100% of the lines from the stack trace (doesn't work) --> <trimStackTrace>false</trimStackTrace> </configuration> <executions> <execution> <id>unit-tests</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <!-- Never skip running the tests when the test phase is invoked --> <skip>false</skip> <includes> <!-- Include unit tests within integration-test phase. --> <include>**/*Tests.java</include> </includes> <excludes> <!-- Exclude integration tests within (unit) test phase. --> <exclude>**/*IntegrationTests.java</exclude> </excludes> </configuration> </execution> <execution> <id>integration-tests</id> <phase>integration-test</phase> <goals> <goal>test</goal> </goals> <configuration> <!-- Never skip running the tests when the integration-test phase is invoked --> <skip>false</skip> <includes> <!-- Include integration tests within integration-test phase. --> <include>**/*Integration*.java</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>com.google.cloud.artifactregistry</groupId> <artifactId>artifactregistry-maven-wagon</artifactId> <version>2.1.0</version> </extension> </extensions> </build> </project>