<?xml version="1.0" encoding="UTF-8"?>
<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>io.hexaglue</groupId>
        <artifactId>hexaglue-syntax</artifactId>
        <version>6.1.1</version>
    </parent>

    <artifactId>hexaglue-syntax-api</artifactId>

    <name>HexaGlue Syntax API</name>
    <description>Parser abstraction interfaces - ZERO external dependencies (only java.*)</description>

    <properties>
        <hexaglue.root>${project.basedir}/../..</hexaglue.root>
    </properties>

    <!--
    CRITICAL: This module has ZERO runtime dependencies.
    Only test dependencies are allowed.
    This ensures the API is purely abstract and doesn't leak parser implementation details.
    -->
    <dependencies>
        <!-- Test dependencies only -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>
