<?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>cn.zidot</groupId>
        <artifactId>sprite-parent-framework</artifactId>
        <version>1.0.1</version>
    </parent>

    <groupId>cn.zidot</groupId>
    <artifactId>sprite-component-groovy</artifactId>
    <version>1.0.0</version>

    <description>sprite component groovy</description>
    <url>https://gitee.com/jackl-osc/sprite-framework.git</url>
    <developers>
        <developer>
            <name>Lu Mengwei</name>
            <email>jackl_mail@sina.com</email>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>Apache License Version 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <distributionManagement>
        <snapshotRepository>
            <id>oss</id>
            <url>
                https://oss.sonatype.org/content/repositories/snapshots/
            </url>
        </snapshotRepository>
        <repository>
            <id>oss</id>
            <url>
                https://oss.sonatype.org/service/local/staging/deploy/maven2/
            </url>
        </repository>
    </distributionManagement>
    <dependencies>
        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy-all</artifactId>
            <version>2.4.3</version>
        </dependency>
        <dependency>
            <groupId>cn.zidot</groupId>
            <artifactId>sprite-utils</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>