langchain4j

Форк
1
96 строк · 2.9 Кб
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
    <modelVersion>4.0.0</modelVersion>
6
    <parent>
7
        <groupId>dev.langchain4j</groupId>
8
        <artifactId>langchain4j-parent</artifactId>
9
        <version>0.29.0-SNAPSHOT</version>
10
        <relativePath>../langchain4j-parent/pom.xml</relativePath>
11
    </parent>
12

13
    <artifactId>langchain4j-ollama</artifactId>
14
    <name>LangChain4j :: Integration :: Ollama</name>
15

16
    <properties>
17
        <skipOllamaITs>false</skipOllamaITs>
18
    </properties>
19

20
    <dependencies>
21
        <dependency>
22
            <groupId>dev.langchain4j</groupId>
23
            <artifactId>langchain4j-core</artifactId>
24
        </dependency>
25

26
        <dependency>
27
            <groupId>com.squareup.retrofit2</groupId>
28
            <artifactId>retrofit</artifactId>
29
        </dependency>
30

31
        <dependency>
32
            <groupId>com.squareup.retrofit2</groupId>
33
            <artifactId>converter-gson</artifactId>
34
        </dependency>
35

36
        <dependency>
37
            <groupId>com.squareup.okhttp3</groupId>
38
            <artifactId>okhttp</artifactId>
39
        </dependency>
40

41
        <dependency>
42
            <groupId>org.projectlombok</groupId>
43
            <artifactId>lombok</artifactId>
44
            <scope>provided</scope>
45
        </dependency>
46

47
        <dependency>
48
            <groupId>org.junit.jupiter</groupId>
49
            <artifactId>junit-jupiter-engine</artifactId>
50
            <scope>test</scope>
51
        </dependency>
52

53
        <dependency>
54
            <groupId>org.junit.jupiter</groupId>
55
            <artifactId>junit-jupiter-params</artifactId>
56
            <scope>test</scope>
57
        </dependency>
58

59
        <dependency>
60
            <groupId>org.assertj</groupId>
61
            <artifactId>assertj-core</artifactId>
62
            <scope>test</scope>
63
        </dependency>
64

65
        <dependency>
66
            <groupId>org.testcontainers</groupId>
67
            <artifactId>testcontainers</artifactId>
68
            <scope>test</scope>
69
        </dependency>
70

71
        <dependency>
72
            <groupId>org.tinylog</groupId>
73
            <artifactId>tinylog-impl</artifactId>
74
            <scope>test</scope>
75
        </dependency>
76
        <dependency>
77
            <groupId>org.tinylog</groupId>
78
            <artifactId>slf4j-tinylog</artifactId>
79
            <scope>test</scope>
80
        </dependency>
81

82
    </dependencies>
83

84
    <build>
85
        <plugins>
86
            <plugin>
87
                <groupId>org.apache.maven.plugins</groupId>
88
                <artifactId>maven-failsafe-plugin</artifactId>
89
                <configuration>
90
                    <skipTests>${skipOllamaITs}</skipTests>
91
                </configuration>
92
            </plugin>
93
        </plugins>
94
    </build>
95

96
</project>

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.