|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | 5 | <groupId>io.quarkiverse.langchain4j</groupId> |
6 | | - <artifactId>quarkus-langchain4j-sample-tool-guardrails</artifactId> |
7 | | - <name>Quarkus LangChain4j - Sample - Tool Guardrails</name> |
| 6 | + <artifactId>quarkus-langchain4j-sample-guardrails</artifactId> |
| 7 | + <name>Quarkus LangChain4j - Sample - Guardrails</name> |
8 | 8 | <version>1.0-SNAPSHOT</version> |
9 | 9 |
|
10 | 10 | <properties> |
|
18 | 18 | <quarkus.platform.version>3.27.1</quarkus.platform.version> |
19 | 19 | <skipITs>true</skipITs> |
20 | 20 | <surefire-plugin.version>3.2.5</surefire-plugin.version> |
21 | | - <quarkus-langchain4j.version>999-SNAPSHOT</quarkus-langchain4j.version> |
22 | 21 | </properties> |
23 | 22 |
|
24 | | - <dependencyManagement> |
25 | | - <dependencies> |
26 | | - <dependency> |
27 | | - <groupId>${quarkus.platform.group-id}</groupId> |
28 | | - <artifactId>${quarkus.platform.artifact-id}</artifactId> |
29 | | - <version>${quarkus.platform.version}</version> |
30 | | - <type>pom</type> |
31 | | - <scope>import</scope> |
32 | | - </dependency> |
33 | | - </dependencies> |
34 | | - </dependencyManagement> |
35 | | - |
36 | 23 | <dependencies> |
37 | 24 | <dependency> |
38 | 25 | <groupId>io.quarkus</groupId> |
39 | 26 | <artifactId>quarkus-rest-jackson</artifactId> |
40 | 27 | </dependency> |
41 | 28 | <dependency> |
42 | | - <groupId>io.quarkiverse.langchain4j</groupId> |
43 | | - <artifactId>quarkus-langchain4j-openai</artifactId> |
44 | | - <version>${quarkus-langchain4j.version}</version> |
| 29 | + <groupId>io.quarkus</groupId> |
| 30 | + <artifactId>quarkus-security</artifactId> |
45 | 31 | </dependency> |
46 | 32 | <dependency> |
47 | 33 | <groupId>io.quarkus</groupId> |
48 | | - <artifactId>quarkus-security</artifactId> |
| 34 | + <artifactId>quarkus-junit5</artifactId> |
| 35 | + <scope>test</scope> |
49 | 36 | </dependency> |
50 | | - |
51 | | - <!-- Minimal dependencies to constrain the build --> |
52 | 37 | <dependency> |
53 | | - <groupId>io.quarkiverse.langchain4j</groupId> |
54 | | - <artifactId>quarkus-langchain4j-openai-deployment</artifactId> |
55 | | - <version>${quarkus-langchain4j.version}</version> |
| 38 | + <groupId>io.rest-assured</groupId> |
| 39 | + <artifactId>rest-assured</artifactId> |
56 | 40 | <scope>test</scope> |
57 | | - <type>pom</type> |
58 | | - <exclusions> |
59 | | - <exclusion> |
60 | | - <groupId>*</groupId> |
61 | | - <artifactId>*</artifactId> |
62 | | - </exclusion> |
63 | | - </exclusions> |
64 | 41 | </dependency> |
| 42 | + |
65 | 43 | </dependencies> |
66 | 44 |
|
67 | 45 | <build> |
|
96 | 74 | </build> |
97 | 75 |
|
98 | 76 | <profiles> |
| 77 | + <profile> |
| 78 | + <id>default-project-deps</id> |
| 79 | + <activation> |
| 80 | + <property> |
| 81 | + <name>!platform-deps</name> |
| 82 | + </property> |
| 83 | + </activation> |
| 84 | + <properties> |
| 85 | + <quarkus-langchain4j.version>999-SNAPSHOT</quarkus-langchain4j.version> |
| 86 | + </properties> |
| 87 | + <dependencyManagement> |
| 88 | + <dependencies> |
| 89 | + <dependency> |
| 90 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 91 | + <artifactId>${quarkus.platform.artifact-id}</artifactId> |
| 92 | + <version>${quarkus.platform.version}</version> |
| 93 | + <type>pom</type> |
| 94 | + <scope>import</scope> |
| 95 | + </dependency> |
| 96 | + </dependencies> |
| 97 | + </dependencyManagement> |
| 98 | + <dependencies> |
| 99 | + <dependency> |
| 100 | + <groupId>io.quarkiverse.langchain4j</groupId> |
| 101 | + <artifactId>quarkus-langchain4j-openai</artifactId> |
| 102 | + <version>${quarkus-langchain4j.version}</version> |
| 103 | + </dependency> |
| 104 | + </dependencies> |
| 105 | + </profile> |
| 106 | + <profile> |
| 107 | + <id>platform-deps</id> |
| 108 | + <activation> |
| 109 | + <property> |
| 110 | + <name>platform-deps</name> |
| 111 | + </property> |
| 112 | + </activation> |
| 113 | + <properties> |
| 114 | + <quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id> |
| 115 | + </properties> |
| 116 | + <dependencyManagement> |
| 117 | + <dependencies> |
| 118 | + <dependency> |
| 119 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 120 | + <artifactId>${quarkus.platform.artifact-id}</artifactId> |
| 121 | + <version>${quarkus.platform.version}</version> |
| 122 | + <type>pom</type> |
| 123 | + <scope>import</scope> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 127 | + <artifactId>quarkus-langchain4j-bom</artifactId> |
| 128 | + <version>${quarkus.platform.version}</version> |
| 129 | + <type>pom</type> |
| 130 | + <scope>import</scope> |
| 131 | + </dependency> |
| 132 | + </dependencies> |
| 133 | + </dependencyManagement> |
| 134 | + <dependencies> |
| 135 | + <dependency> |
| 136 | + <groupId>io.quarkiverse.langchain4j</groupId> |
| 137 | + <artifactId>quarkus-langchain4j-openai</artifactId> |
| 138 | + </dependency> |
| 139 | + </dependencies> |
| 140 | + </profile> |
99 | 141 | <profile> |
100 | 142 | <id>native</id> |
101 | 143 | <activation> |
|
0 commit comments