langchain4j/langchain4j-hugging-face/pom.xml

85 lines
2.7 KiB
XML
Raw Normal View History

<?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>
<parent>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-parent</artifactId>
2024-09-25 21:23:52 +08:00
<version>0.36.0-SNAPSHOT</version>
<relativePath>../langchain4j-parent/pom.xml</relativePath>
</parent>
<artifactId>langchain4j-hugging-face</artifactId>
<name>LangChain4j :: Integration :: Hugging Face</name>
<dependencies>
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-core</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-jackson</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
re #1506 Enable Maven enforcer plugin and fix dependency conflict introduced by `okhttp` dependency in 19 modules. (#1645) ## Issue #1506 ## Change Resolved version conflict: ``` [ERROR] Rule 0: org.apache.maven.enforcer.rules.dependency.DependencyConvergence failed with message: [ERROR] Failed while enforcing releasability. [ERROR] [ERROR] Dependency convergence error for org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.9.10 paths to dependency are: [ERROR] +-dev.langchain4j:langchain4j-ollama:jar:0.34.0-SNAPSHOT [ERROR] +-com.squareup.okhttp3:okhttp:jar:4.12.0:compile [ERROR] +-com.squareup.okio:okio:jar:3.6.0:compile [ERROR] +-com.squareup.okio:okio-jvm:jar:3.6.0:compile [ERROR] +-org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.9.10:compile [ERROR] and [ERROR] +-dev.langchain4j:langchain4j-ollama:jar:0.34.0-SNAPSHOT [ERROR] +-com.squareup.okhttp3:okhttp:jar:4.12.0:compile [ERROR] +-org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.8.21:compile [ERROR] [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException [ERROR] [ERROR] After correcting the problems, you can resume the build with the command [ERROR] mvn <args> -rf :langchain4j-ollama ``` ... caused by 'okhttp' dependency and enabled Maven enforcer plugin in the following modules: - LangChain4j :: Integration :: Anthropic - LangChain4j :: Integration :: ChatGLM - LangChain4j :: Integration :: Chroma - LangChain4j :: Integration :: CloudFlare Workers AI - LangChain4j :: Integration :: Cohere - LangChain4j :: Integration :: DashScope - LangChain4j :: Integration :: Hugging Face - LangChain4j :: Integration :: Jina - LangChain4j :: Integration :: Judge0 - LangChain4j :: Integration :: MistralAI - LangChain4j :: Integration :: Nomic - LangChain4j :: Integration :: OVHcloud AI - LangChain4j :: Integration :: Ollama - LangChain4j :: Integration :: Qianfan - LangChain4j :: Integration :: Vearch - LangChain4j :: Integration :: Vespa - LangChain4j :: Integration :: Zhipu AI - LangChain4j :: Web Search Engine :: SearchApi - LangChain4j :: Web Search Engine :: Tavily ## Note Please note that [issue ](https://github.com/square/okhttp/issues/8288) for this was already created in `httpok` repository but it will not be fixed in 4.x. It's reportedly already tackled in version 5.x. With that in mind I suggest we apply temporary changes proposed in this PR. After upgrading to `httpok` 5.x we will be able to remove these. ## Tests `mvn clean test` passed
2024-08-27 23:44:06 +08:00
<!-- DEPENDENCY CONFLICT RESOLUTION FOR OKHTTP (START) -->
<dependency>
2023-09-29 18:07:50 +08:00
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
re #1506 Enable Maven enforcer plugin and fix dependency conflict introduced by `okhttp` dependency in 19 modules. (#1645) ## Issue #1506 ## Change Resolved version conflict: ``` [ERROR] Rule 0: org.apache.maven.enforcer.rules.dependency.DependencyConvergence failed with message: [ERROR] Failed while enforcing releasability. [ERROR] [ERROR] Dependency convergence error for org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.9.10 paths to dependency are: [ERROR] +-dev.langchain4j:langchain4j-ollama:jar:0.34.0-SNAPSHOT [ERROR] +-com.squareup.okhttp3:okhttp:jar:4.12.0:compile [ERROR] +-com.squareup.okio:okio:jar:3.6.0:compile [ERROR] +-com.squareup.okio:okio-jvm:jar:3.6.0:compile [ERROR] +-org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.9.10:compile [ERROR] and [ERROR] +-dev.langchain4j:langchain4j-ollama:jar:0.34.0-SNAPSHOT [ERROR] +-com.squareup.okhttp3:okhttp:jar:4.12.0:compile [ERROR] +-org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.8.21:compile [ERROR] [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException [ERROR] [ERROR] After correcting the problems, you can resume the build with the command [ERROR] mvn <args> -rf :langchain4j-ollama ``` ... caused by 'okhttp' dependency and enabled Maven enforcer plugin in the following modules: - LangChain4j :: Integration :: Anthropic - LangChain4j :: Integration :: ChatGLM - LangChain4j :: Integration :: Chroma - LangChain4j :: Integration :: CloudFlare Workers AI - LangChain4j :: Integration :: Cohere - LangChain4j :: Integration :: DashScope - LangChain4j :: Integration :: Hugging Face - LangChain4j :: Integration :: Jina - LangChain4j :: Integration :: Judge0 - LangChain4j :: Integration :: MistralAI - LangChain4j :: Integration :: Nomic - LangChain4j :: Integration :: OVHcloud AI - LangChain4j :: Integration :: Ollama - LangChain4j :: Integration :: Qianfan - LangChain4j :: Integration :: Vearch - LangChain4j :: Integration :: Vespa - LangChain4j :: Integration :: Zhipu AI - LangChain4j :: Web Search Engine :: SearchApi - LangChain4j :: Web Search Engine :: Tavily ## Note Please note that [issue ](https://github.com/square/okhttp/issues/8288) for this was already created in `httpok` repository but it will not be fixed in 4.x. It's reportedly already tackled in version 5.x. With that in mind I suggest we apply temporary changes proposed in this PR. After upgrading to `httpok` 5.x we will be able to remove these. ## Tests `mvn clean test` passed
2024-08-27 23:44:06 +08:00
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
<!-- DEPENDENCY CONFLICT RESOLUTION FOR OKHTTP (END) -->
2023-09-29 18:07:50 +08:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
</project>