convex-db
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-db</artifactId>
<version>0.8.9</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.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>convex-db</artifactId>
<name>Convex DB</name>
<description>SQL database layer for Convex lattice data</description>
<url>https://convex.world</url>
<properties>
<calcite.version>1.42.0</calcite.version>
</properties>
<profiles>
<profile>
<!-- JDK 24+ warns on first sun.misc.Unsafe memory access, triggered here by
protobuf-java through Calcite/Avatica. Keep this JDK-specific test option
local to the affected module so it cannot leak into unrelated IDE launches. -->
<id>jdk24-quiet-unsafe-warnings</id>
<activation>
<jdk>[24,)</jdk>
</activation>
<properties>
<argLine>
--add-opens=java.base/java.util=ALL-UNNAMED
--sun-misc-unsafe-memory-access=allow
-Dslf4j.internal.verbosity=ERROR
</argLine>
</properties>
</profile>
</profiles>
<build>
<plugins>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-core</artifactId>
<version>${convex.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-peer</artifactId>
<version>${convex.version}</version>
<scope>compile</scope>
</dependency>
<!-- Apache Calcite for SQL -->
<dependency>
<groupId>org.apache.calcite</groupId>
<artifactId>calcite-core</artifactId>
<version>${calcite.version}</version>
</dependency>
<dependency>
<groupId>org.apache.calcite</groupId>
<artifactId>calcite-server</artifactId>
<version>${calcite.version}</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- PostgreSQL JDBC driver for testing PG wire protocol -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>