ragleap-rag
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.antonyrag</groupId>
<artifactId>ragleap-rag</artifactId>
<version>0.8.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.antonyrag</groupId>
<artifactId>ragleap-rag</artifactId>
<version>0.8.0</version>
<packaging>jar</packaging>
<name>ragleap-rag (Java port)</name>
<description>
Java port of ragleap-rag's core RAG pipeline: connection
pooling, embeddings (7 providers), pgvector storage (dense,
sparse, hybrid RRF search), retrieval, and generation
(streaming, structured output, provider fallback, vision
captioning) - plus standalone utilities (chunking,
sanitization, guardrails, cost tracking, evaluation scoring,
structured-output validation, observability hooks).
Independently versioned from the Python ragleap-rag package
(see https://pypi.org/project/ragleap-rag/) rather than kept
in lockstep - this port does not yet have parity with the
Python package's full surface (only pgvector of its 6 vector
backends, no query rewriting, no conversation memory, no
ingestion pipeline). Every module here is genuinely tested;
most of the core pipeline is live-verified against real
Postgres and Ollama, documented per-class where it is not.
</description>
<url>https://github.com/antonyrag/ragleap-core</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>Antony</name>
<email>antony@ragleap.com</email>
<url>https://github.com/antonyrag</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/antonyrag/ragleap-core.git</connection>
<developerConnection>scm:git:https://github.com/antonyrag/ragleap-core.git</developerConnection>
<url>https://github.com/antonyrag/ragleap-core</url>
</scm>
<properties>
<maven.compiler.release>21</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.10.2</junit.version>
<jtokkit.version>1.1.0</jtokkit.version>
<json-schema-validator.version>1.5.5</json-schema-validator.version>
<hikaricp.version>7.1.0</hikaricp.version>
<postgresql.version>42.7.13</postgresql.version>
<sqlite-jdbc.version>3.53.4.0</sqlite-jdbc.version>
</properties>
<dependencies>
<dependency>
<groupId>com.knuddels</groupId>
<artifactId>jtokkit</artifactId>
<version>${jtokkit.version}</version>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>${json-schema-validator.version}</version>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>${hikaricp.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>${sqlite-jdbc.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!--
GPG signing and Central Portal publishing live in this profile,
not the default build, so a plain "mvn test" (what CI runs) never
needs a GPG passphrase or touches Sonatype. Publish with:
mvn clean deploy -Prelease
-->
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>