|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Copyright 2025 Google LLC |
| 4 | +
|
| 5 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + you may not use this file except in compliance with the License. |
| 7 | + You may obtain a copy of the License at |
| 8 | +
|
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | + Unless required by applicable law or agreed to in writing, software |
| 12 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + See the License for the specific language governing permissions and |
| 15 | + limitations under the License. |
| 16 | +--> |
| 17 | +<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"> |
| 18 | + <modelVersion>4.0.0</modelVersion> |
| 19 | + |
| 20 | + <parent> |
| 21 | + <groupId>com.google.adk</groupId> |
| 22 | + <artifactId>google-adk-parent</artifactId> |
| 23 | + <version>0.9.1-SNAPSHOT</version><!-- {x-version-update:google-adk:current} --> |
| 24 | + <relativePath>../../pom.xml</relativePath> |
| 25 | + </parent> |
| 26 | + |
| 27 | + <artifactId>google-adk-planners</artifactId> |
| 28 | + <name>Agent Development Kit - Planners</name> |
| 29 | + <description>Built-in planner implementations for the ADK PlannerAgent, including GOAP (Goal-Oriented Action Planning), P2P (Peer-to-Peer), and Supervisor planners.</description> |
| 30 | + |
| 31 | + <dependencies> |
| 32 | + <!-- Main dependencies --> |
| 33 | + <dependency> |
| 34 | + <groupId>com.google.adk</groupId> |
| 35 | + <artifactId>google-adk</artifactId> |
| 36 | + <version>${project.version}</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>com.google.genai</groupId> |
| 40 | + <artifactId>google-genai</artifactId> |
| 41 | + </dependency> |
| 42 | + |
| 43 | + <!-- Test dependencies --> |
| 44 | + <dependency> |
| 45 | + <groupId>com.google.adk</groupId> |
| 46 | + <artifactId>google-adk</artifactId> |
| 47 | + <version>${project.version}</version> |
| 48 | + <type>test-jar</type> |
| 49 | + <scope>test</scope> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.junit.jupiter</groupId> |
| 53 | + <artifactId>junit-jupiter-api</artifactId> |
| 54 | + <scope>test</scope> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.junit.jupiter</groupId> |
| 58 | + <artifactId>junit-jupiter-engine</artifactId> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.google.truth</groupId> |
| 63 | + <artifactId>truth</artifactId> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.mockito</groupId> |
| 68 | + <artifactId>mockito-core</artifactId> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + </dependencies> |
| 72 | +</project> |
0 commit comments