adhoc-recipes
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>eu.solven.adhoc</groupId>
<artifactId>adhoc-recipes</artifactId>
<version>0.1.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>eu.solven.adhoc</groupId>
<artifactId>adhoc-engine</artifactId>
<version>0.1.0</version>
</parent>
<artifactId>adhoc-recipes</artifactId>
<!-- `name` is required by Sonatype-->
<name>${project.groupId}:${project.artifactId}</name>
<description>Functional recipes (advanced measures, example datasets) on top of adhoc-cube. The natural single-module entry point for callers who don't want to pick engine layers individually.</description>
<properties>
<jacoco.branch.ratio>0.74</jacoco.branch.ratio>
<jacoco.instruction.ratio>0.91</jacoco.instruction.ratio>
<automatic.module.name>eu.solven.adhoc.recipes</automatic.module.name>
</properties>
<dependencies>
<dependency>
<!-- @NullMarked / @Nullable / @NonNull (annotation-only, retained at compile time) -->
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.duckdb/duckdb_jdbc -->
<dependency>
<groupId>org.duckdb</groupId>
<artifactId>duckdb_jdbc</artifactId>
<version>${duckdb.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>eu.solven.adhoc</groupId>
<artifactId>adhoc-cube</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.solven.adhoc</groupId>
<artifactId>adhoc-cube</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.solven-eu.pepper</groupId>
<artifactId>pepper-unittest</artifactId>
<version>${pepper.version}</version>
<scope>test</scope>
</dependency>
<!-- Source:
https://mvnrepository.com/artifact/com.google.guava/guava-testlib -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-testlib</artifactId>
<version>${guava.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<!-- Adhoc relies on Jupiter/JUnit5-->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- Check RAM usage, or proper provisioning/capacity-->
<groupId>io.github.solven-eu.pepper</groupId>
<artifactId>pepper-with-agent</artifactId>
<version>${pepper.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- StandaloneTableQueryPod -->
<groupId>eu.solven.adhoc</groupId>
<artifactId>adhoc-table</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<!-- IValueProviderTestHelpers -->
<groupId>eu.solven.adhoc</groupId>
<artifactId>adhoc-model</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<!-- MapWithNulls -->
<groupId>eu.solven.adhoc</groupId>
<artifactId>adhoc-cell</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<!-- IAdhocTestConstants -->
<groupId>eu.solven.adhoc</groupId>
<artifactId>adhoc-measures</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/io.github.solven-eu.cleanthat/annotations -->
<dependency>
<groupId>io.github.solven-eu.cleanthat</groupId>
<artifactId>annotations</artifactId>
<version>2.25</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>