<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 https://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>cn.benma666</groupId>
        <artifactId>my-parent</artifactId>
        <version>0.2.2</version>
    </parent>
    <artifactId>myutils-kettle</artifactId>
    <packaging>jar</packaging>
    <description>我的工具-kettle相关工具。</description>

    <name>myutils-kettle</name>
    <url>http://www.benma666.cn</url>

    <organization>
        <url>www.benma666.cn</url>
        <name>benma666</name>
    </organization>
    <licenses>
        <license>
            <name>GNU GENERAL PUBLIC LICENSE Version 2, June 1991</name>
            <url>https://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
            <distribution>actable</distribution>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>majinju</name>
            <email>jinjuma@yeah.net</email>
            <organization>benma666</organization>
            <url>https://gitee.com/majinju/mytuils-kettle</url>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:git@github.com:majinju/mytuils-kettle.git</connection>
        <developerConnection>scm:git:git@gitee.com:majinju/mytuils-kettle.git</developerConnection>
        <url>https://gitee.com/majinju/mytuils-kettle</url>
    </scm>

    <distributionManagement>
        <snapshotRepository>
            <!-- 这个id需要在setting.xml中设置  -->
            <id>snapshots</id>
            <name>OSS Snapshots Repository</name>
            <!-- 这里的url就是Issue中回复的snapshots 的repo地址-->
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
            <id>snapshots</id>
            <name>OSS Staging Repository</name>
            <!-- 这里的url就是Issue中回复的staging 的repo地址-->
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <dependencies>
        <dependency>
            <groupId>cn.benma666</groupId>
            <artifactId>myutils-spring-boot-starter</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>*</groupId>
                    <artifactId>*</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.github.stuxuhai</groupId>
            <artifactId>jpinyin</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-net</groupId>
            <artifactId>commons-net</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>

        <!-- kettle start-->
        <dependency>
            <groupId>cn.benma666</groupId>
            <artifactId>kettle-core</artifactId>
        </dependency>
        <dependency>
            <groupId>cn.benma666</groupId>
            <artifactId>kettle-engine</artifactId>
            <exclusions>
                <exclusion>
                    <artifactId>kettle-core</artifactId>
                    <groupId>pentaho-kettle</groupId>
                </exclusion>
            </exclusions>
        </dependency>
<!--        <dependency>-->
<!--            <groupId>cn.benma666</groupId>-->
<!--            <artifactId>KettleEasyExpand</artifactId>-->
<!--        </dependency>-->
        <!-- kettle end-->
    </dependencies>
</project>
