convex-benchmarks
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>world.convex</groupId> <artifactId>convex-benchmarks</artifactId> <version>0.8.1</version> </dependency>
<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"> <parent> <groupId>world.convex</groupId> <artifactId>convex</artifactId> <version>0.8.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>convex-benchmarks</artifactId> <name>Convex Benchmarks</name> <description>Convex Benchmark Suite</description> <url>https://convex.world</url> <build> <finalName>convex-benchmarks</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>world.convex</groupId> <artifactId>convex-peer</artifactId> <version>${convex.version}</version> </dependency> <dependency> <groupId>world.convex</groupId> <artifactId>convex-sodium</artifactId> <version>${convex.version}</version> </dependency> <dependency> <groupId>world.convex</groupId> <artifactId>convex-gui</artifactId> <version>${convex.version}</version> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>${jmh.version}</version> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> <optional>true</optional> </dependency> </dependencies> </project>