expresso-query
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tk.labyrinth</groupId>
<artifactId>expresso-query</artifactId>
<version>1.1.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>tk.labyrinth</groupId>
<artifactId>expresso-parent</artifactId>
<version>1.1.4</version>
</parent>
<!---->
<artifactId>expresso-query</artifactId>
<!---->
<name>${project.groupId}:${project.artifactId}</name>
<description>Tiny java library for query expression processing</description>
<!---->
<dependencies>
<!-- COMPILE BEGIN -->
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
</dependency>
<!---->
<dependency>
<groupId>tk.labyrinth</groupId>
<artifactId>expresso-lang</artifactId>
</dependency>
<!-- COMPILE END -->
<!---->
<!-- PROVIDED BEGIN -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
</dependency>
<!-- PROVIDED END -->
<!---->
<!-- RUNTIME BEGIN -->
<!-- RUNTIME END -->
<!---->
<!-- TEST BEGIN -->
<dependency>
<groupId>de.bwaldvogel</groupId>
<artifactId>mongo-java-server</artifactId>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
</dependency>
<!-- TEST END -->
</dependencies>
<!---->
</project>