<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
    <groupId>net.thevpc.naru</groupId>
    <artifactId>naru-tools-index-java</artifactId>
    <version>1.0.0.0</version>
    <packaging>jar</packaging>
    <url>https://github.com/thevpc/naru</url>
    <description>NARU Java Language Indexer (JavaParser)</description>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <github.global.server>github</github.global.server>
        <nuts.gui>false</nuts.gui>
        <nuts.genericName>NARU - Nuts AI Reasoning Unit</nuts.genericName>
        <nuts.categories>/AI/Development</nuts.categories>
    </properties>

    <dependencies>
        <dependency><groupId>net.thevpc.naru</groupId><artifactId>naru-api</artifactId><version>1.0.0.0</version></dependency>
        <dependency><groupId>net.thevpc.naru</groupId><artifactId>naru-tools-index</artifactId><version>1.0.0.0</version></dependency>
        <dependency><groupId>com.github.javaparser</groupId><artifactId>javaparser-core</artifactId><version>3.26.4</version></dependency>
        <dependency><groupId>org.junit.jupiter</groupId><artifactId>junit-jupiter</artifactId><version>5.10.0</version><scope>test</scope></dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.11.0</version>
                <configuration>
                    <showDeprecation>true</showDeprecation>
                    <debug>true</debug>
                    <source>${maven.compiler.source}</source>
                    <target>${maven.compiler.target}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
