<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>

    <packaging>jar</packaging>

    <parent>
        <groupId>com.neko233</groupId>
        <artifactId>neko233-skilltree</artifactId>
        <version>0.3.7</version>
    </parent>

    <artifactId>skilltree-commons-core</artifactId>
    <name>${project.artifactId}</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>

        <!-- for test -->
<!--        <dependency>-->
<!--            <groupId>com.neko233</groupId>-->
<!--            <artifactId>test-jar</artifactId>-->
<!--            <version>1.0.0</version>-->
<!--            <scope>system</scope>-->
<!--            <systemPath>${project.basedir}/lib-for-test/test-jar-1.0.0.jar</systemPath>-->
<!--        </dependency>-->

        <dependency>
            <groupId>com.neko233</groupId>
            <artifactId>skilltree-commons-annotation</artifactId>
            <version>${parent.version}</version>
        </dependency>


        <!-- Other -->
        <dependency>
            <groupId>com.neko233</groupId>
            <artifactId>datetime233</artifactId>
            <version>${datetime233.version}</version>
        </dependency>


        <dependency>
            <groupId>com.neko233</groupId>
            <artifactId>json-java</artifactId>
            <version>${neko233-json-java.version}</version>
        </dependency>
        <dependency>
            <groupId>com.neko233</groupId>
            <artifactId>skilltree-commons-api</artifactId>
            <version>0.3.7</version>
        </dependency>
        <dependency>
            <groupId>com.neko233</groupId>
            <artifactId>skilltree-commons-annotation</artifactId>
            <version>0.3.7</version>
            <scope>compile</scope>
        </dependency>

    </dependencies>


    <build>
        <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
        <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>

<!--        <plugins>-->
<!--            <plugin>-->
<!--                <groupId>org.jetbrains.kotlin</groupId>-->
<!--                <artifactId>kotlin-maven-plugin</artifactId>-->
<!--                <configuration>-->
<!--                    <args>-->
<!--                        <arg>-Xjsr305=strict</arg>-->
<!--                    </args>-->
<!--                    <compilerPlugins>-->
<!--                        <plugin>spring</plugin>-->
<!--                    </compilerPlugins>-->
<!--                </configuration>-->
<!--                <dependencies>-->
<!--                    <dependency>-->
<!--                        <groupId>org.jetbrains.kotlin</groupId>-->
<!--                        <artifactId>kotlin-maven-allopen</artifactId>-->
<!--                        <version>${kotlin.version}</version>-->
<!--                    </dependency>-->
<!--                </dependencies>-->
<!--            </plugin>-->
<!--        </plugins>-->
    </build>
</project>
