|
| 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <parent> |
| 7 | + <groupId>io.dapr.quarkus</groupId> |
| 8 | + <artifactId>dapr-quarkus-agentic-parent</artifactId> |
| 9 | + <version>1.18.0-SNAPSHOT</version> |
| 10 | + <relativePath>../pom.xml</relativePath> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>quarkus-agentic-dapr-examples</artifactId> |
| 14 | + <name>Quarkus Agentic Dapr - Examples</name> |
| 15 | + |
| 16 | + <dependencies> |
| 17 | + <!-- Our Dapr Agentic extension (brings quarkus-dapr + quarkus-langchain4j-agentic transitively) --> |
| 18 | + <dependency> |
| 19 | + <groupId>io.quarkiverse.dapr</groupId> |
| 20 | + <artifactId>quarkus-agentic-dapr</artifactId> |
| 21 | + <version>${project.version}</version> |
| 22 | + </dependency> |
| 23 | + |
| 24 | + <dependency> |
| 25 | + <groupId>io.quarkiverse.dapr</groupId> |
| 26 | + <artifactId>quarkus-agentic-dapr-agents-registry</artifactId> |
| 27 | + <version>${project.version}</version> |
| 28 | + </dependency> |
| 29 | + |
| 30 | + <!-- LLM provider --> |
| 31 | + <dependency> |
| 32 | + <groupId>io.quarkiverse.langchain4j</groupId> |
| 33 | + <artifactId>quarkus-langchain4j-openai</artifactId> |
| 34 | + <version>${quarkus-langchain4j.version}</version> |
| 35 | + </dependency> |
| 36 | + |
| 37 | + <!-- REST endpoint --> |
| 38 | + <dependency> |
| 39 | + <groupId>io.quarkus</groupId> |
| 40 | + <artifactId>quarkus-rest</artifactId> |
| 41 | + </dependency> |
| 42 | + |
| 43 | + <!-- Test dependencies --> |
| 44 | + <dependency> |
| 45 | + <groupId>io.quarkus</groupId> |
| 46 | + <artifactId>quarkus-junit5</artifactId> |
| 47 | + <scope>test</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>io.rest-assured</groupId> |
| 51 | + <artifactId>rest-assured</artifactId> |
| 52 | + <scope>test</scope> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.awaitility</groupId> |
| 56 | + <artifactId>awaitility</artifactId> |
| 57 | + <scope>test</scope> |
| 58 | + </dependency> |
| 59 | + </dependencies> |
| 60 | + |
| 61 | + <build> |
| 62 | + <plugins> |
| 63 | + <plugin> |
| 64 | + <groupId>io.quarkus</groupId> |
| 65 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 66 | + <version>${quarkus.version}</version> |
| 67 | + <executions> |
| 68 | + <execution> |
| 69 | + <goals> |
| 70 | + <goal>build</goal> |
| 71 | + </goals> |
| 72 | + </execution> |
| 73 | + </executions> |
| 74 | + </plugin> |
| 75 | + <plugin> |
| 76 | + <artifactId>maven-compiler-plugin</artifactId> |
| 77 | + <version>3.13.0</version> |
| 78 | + <configuration> |
| 79 | + <compilerArgs> |
| 80 | + <arg>-parameters</arg> |
| 81 | + </compilerArgs> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + <plugin> |
| 85 | + <artifactId>maven-surefire-plugin</artifactId> |
| 86 | + <version>3.5.2</version> |
| 87 | + <configuration> |
| 88 | + <systemPropertyVariables> |
| 89 | + <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
| 90 | + </systemPropertyVariables> |
| 91 | + </configuration> |
| 92 | + </plugin> |
| 93 | + </plugins> |
| 94 | + </build> |
| 95 | +</project> |
0 commit comments