openevals4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.rohts-patil</groupId> <artifactId>openevals4j</artifactId> <version>0.0.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.rohts-patil</groupId> <artifactId>openevals4j</artifactId> <packaging>jar</packaging> <version>0.0.2</version> <name>openevals4j</name> <description>OpenEvals4J is a Java library for evaluating RAG (Retrieval-Augmented Generation) systems and AI agents using LLM as judge. It provides a flexible and extensible framework for assessing the performance of your RAG and agent implementations. </description> <url>https://github.com/rohts-patil/openevals4j</url> <inceptionYear>2025</inceptionYear> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <langchain4j-version>0.36.2</langchain4j-version> <langchain4j-google-ai-gemini-version>0.36.2</langchain4j-google-ai-gemini-version> <junit-version>5.9.2</junit-version> <lombok-version>1.18.26</lombok-version> <jackson-version>2.15.2</jackson-version> <slf4j-version>2.0.9</slf4j-version> <logback-version>1.4.14</logback-version> </properties> <scm> <connection>scm:git:https://github.com/rohts-patil/openevals4j.git</connection> <developerConnection>scm:git:https://github.com/rohts-patil/openevals4j.git</developerConnection> <tag>HEAD</tag> <url>https://github.com/rohts-patil/openevals4j</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/rohts-patil/openevals4j/issues</url> </issueManagement> <developers> <developer> <id>rohts-patil</id> <name>Rohit Patil</name> <email>rohts.patil@gmail.com</email> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <dependencies> <!-- langchain4j for llm calls --> <dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j</artifactId> <version>${langchain4j-version}</version> </dependency> <!-- langchain4j Gemini for testing llm calls --> <dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-google-ai-gemini</artifactId> <version>${langchain4j-google-ai-gemini-version}</version> <scope>test</scope> </dependency> <!-- JUnit for testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.8.0</version> <scope>test</scope> </dependency> <!-- Lombok for reducing boilerplate --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok-version}</version> <scope>provided</scope> </dependency> <!-- Jackson for JSON processing --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson-version}</version> </dependency> <!-- SLF4J API for logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-version}</version> </dependency> <!-- Logback Classic as SLF4J implementation --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback-version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0</version> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>