volt-voter-procedures
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.voltdb</groupId> <artifactId>volt-voter-procedures</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/maven-v4_0_0.xsd"> <parent> <artifactId>volt-testcontainer-module</artifactId> <groupId>org.voltdb</groupId> <version>1.4.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>volt-voter-procedures</artifactId> <name>VoltDB Procedures</name> <build> <extensions> <extension> <groupId>com.google.cloud.artifactregistry</groupId> <artifactId>artifactregistry-maven-wagon</artifactId> <version>2.2.0</version> </extension> </extensions> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>org.joda</pattern> <shadedPattern>org.shaded.joda</shadedPattern> </relocation> </relocations> <artifactSet> <excludes> <exclude>org.voltdb:voltdb</exclude> <exclude>io.netty:netty-all</exclude> <exclude>io.netty:netty-tcnative-boringssl-static</exclude> </excludes> </artifactSet> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.7.0</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.voltdb</groupId> <artifactId>voltdb</artifactId> <version>10.1.1</version> <scope>compile</scope> </dependency> </dependencies> <properties> <maven.compiler.source>17</maven.compiler.source> <slf4jVersion>1.7.36</slf4jVersion> <testcontainerVersion>1.20.1</testcontainerVersion> <voltClientVersion>14.1.0</voltClientVersion> <maven.compiler.target>17</maven.compiler.target> <dockerjavaVersion>3.4.0</dockerjavaVersion> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.deploy.skip>true</maven.deploy.skip> </properties> </project>