|
16 | 16 | <quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id> |
17 | 17 | <quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id> |
18 | 18 | <quarkus.platform.version>3.20.0</quarkus.platform.version> |
| 19 | + <quarkus-plugin.version>${quarkus.platform.version}</quarkus-plugin.version> |
19 | 20 | <skipITs>true</skipITs> |
20 | 21 | <surefire-plugin.version>3.2.5</surefire-plugin.version> |
21 | | - <quarkus-langchain4j.version>1.1.1</quarkus-langchain4j.version> |
22 | 22 | </properties> |
23 | 23 |
|
24 | 24 | <dependencyManagement> |
|
30 | 30 | <type>pom</type> |
31 | 31 | <scope>import</scope> |
32 | 32 | </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 35 | + <artifactId>quarkus-langchain4j-bom</artifactId> |
| 36 | + <version>${quarkus.platform.version}</version> |
| 37 | + <type>pom</type> |
| 38 | + <scope>import</scope> |
| 39 | + </dependency> |
33 | 40 | </dependencies> |
34 | 41 | </dependencyManagement> |
35 | 42 |
|
|
45 | 52 | <dependency> |
46 | 53 | <groupId>io.quarkiverse.langchain4j</groupId> |
47 | 54 | <artifactId>quarkus-langchain4j-openai</artifactId> |
48 | | - <version>${quarkus-langchain4j.version}</version> |
49 | 55 | </dependency> |
50 | 56 | <dependency> |
51 | 57 | <groupId>io.quarkiverse.langchain4j</groupId> |
52 | 58 | <artifactId>quarkus-langchain4j-easy-rag</artifactId> |
53 | | - <version>${quarkus-langchain4j.version}</version> |
54 | 59 | </dependency> |
55 | 60 |
|
56 | 61 | <!-- UI --> |
|
71 | 76 | <version>0.2.1</version> |
72 | 77 | <scope>runtime</scope> |
73 | 78 | </dependency> |
74 | | - |
75 | | - <!-- Minimal dependencies to constrain the build --> |
76 | | - <dependency> |
77 | | - <groupId>io.quarkiverse.langchain4j</groupId> |
78 | | - <artifactId>quarkus-langchain4j-openai-deployment</artifactId> |
79 | | - <version>${quarkus-langchain4j.version}</version> |
80 | | - <scope>test</scope> |
81 | | - <type>pom</type> |
82 | | - <exclusions> |
83 | | - <exclusion> |
84 | | - <groupId>*</groupId> |
85 | | - <artifactId>*</artifactId> |
86 | | - </exclusion> |
87 | | - </exclusions> |
88 | | - </dependency> |
89 | | - <dependency> |
90 | | - <groupId>io.quarkiverse.langchain4j</groupId> |
91 | | - <artifactId>quarkus-langchain4j-easy-rag-deployment</artifactId> |
92 | | - <version>${quarkus-langchain4j.version}</version> |
93 | | - <scope>test</scope> |
94 | | - <type>pom</type> |
95 | | - <exclusions> |
96 | | - <exclusion> |
97 | | - <groupId>*</groupId> |
98 | | - <artifactId>*</artifactId> |
99 | | - </exclusion> |
100 | | - </exclusions> |
101 | | - </dependency> |
102 | 79 | </dependencies> |
103 | 80 | <build> |
104 | 81 | <plugins> |
105 | 82 | <plugin> |
106 | | - <groupId>io.quarkus</groupId> |
| 83 | + <groupId>${quarkus.platform.group-id}</groupId> |
107 | 84 | <artifactId>quarkus-maven-plugin</artifactId> |
108 | 85 | <version>${quarkus.platform.version}</version> |
109 | 86 | <executions> |
|
0 commit comments