browser4-agentic
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4-agentic</artifactId>
<version>4.14.0-rc.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to
you under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4</artifactId>
<version>4.14.0-rc.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>browser4-agentic</artifactId>
<name>Browser4 Agentic</name>
<dependencies>
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4-coding</artifactId>
</dependency>
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4-common</artifactId>
</dependency>
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4-protocol</artifactId>
</dependency>
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4-browser</artifactId>
</dependency>
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4-skeleton</artifactId>
</dependency>
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>pulsar-ql-common</artifactId>
</dependency>
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>browser4-resources</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ai.platon.pulsar</groupId>
<artifactId>pulsar-ql</artifactId>
<!-- Exclude the original version and use the browser4 managed ones -->
<exclusions>
<exclusion>
<groupId>ai.platon.pulsar</groupId>
<artifactId>pulsar-browser</artifactId>
</exclusion>
<exclusion>
<groupId>ai.platon.pulsar</groupId>
<artifactId>pulsar-protocol</artifactId>
</exclusion>
<exclusion>
<groupId>ai.platon.pulsar</groupId>
<artifactId>pulsar-skeleton</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j</artifactId>
</dependency>
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-open-ai</artifactId>
</dependency>
<!-- MCP SDK for Browser4 MCP server support -->
<dependency>
<groupId>io.modelcontextprotocol</groupId>
<artifactId>kotlin-sdk-core-jvm</artifactId>
<version>${mcp-sdk.version}</version>
</dependency>
<dependency>
<groupId>io.modelcontextprotocol</groupId>
<artifactId>kotlin-sdk-server-jvm</artifactId>
<version>${mcp-sdk.version}</version>
</dependency>
<!-- MCP client: external memory bridge (M4) + MCP HTTP E2E tests -->
<dependency>
<groupId>io.modelcontextprotocol</groupId>
<artifactId>kotlin-sdk-client-jvm</artifactId>
<version>${mcp-sdk.version}</version>
</dependency>
<!-- Ktor CIO engine for embedded MCP HTTP server (lightweight, pure Kotlin) -->
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-server-cio-jvm</artifactId>
<version>3.2.3</version>
</dependency>
<!-- Ktor client CIO engine: MCP HTTP transports (external memory bridge) + MCP HTTP E2E tests -->
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-client-cio-jvm</artifactId>
<version>3.2.3</version>
</dependency>
<!-- Observability: OpenTelemetry for distributed tracing (optional) -->
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-sdk</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-exporter-otlp</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.opentelemetry.semconv</groupId>
<artifactId>opentelemetry-semconv</artifactId>
<optional>true</optional>
</dependency>
<!-- Observability: Micrometer for metrics with Prometheus support (optional) -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</dependency>
<!-- MockK for Kotlin-friendly mocking -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk-jvm</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<!-- Agent memory system: SQLite FTS derived index (memory-index.sqlite).
Version managed by browser4-dependencies BOM (sqlite-jdbc.version). -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<!-- Bundle the repo-level browser4-cli skill (SKILL.md + reference
docs) into the agentic jar at classpath `skills/browser4-cli/**`,
so SkillBootstrap and system.skillDoc can serve it without a
source tree (design §4.3 — new-machine guarantee). -->
<resource>
<directory>${maven.multiModuleProjectDirectory}/skills</directory>
<targetPath>skills</targetPath>
<includes>
<include>browser4-cli/**</include>
</includes>
</resource>
</resources>
</build>
</project>