<?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>
    <properties>
        <sdk.version>1.5.3-release</sdk.version>
    </properties>

    <groupId>com.datarangers</groupId>
    <artifactId>datarangers-sdk</artifactId>
    <packaging>pom</packaging>
    <version>1.5.3-release</version>
    <modules>
        <module>datarangers-sdk-core</module>
        <module>datarangers-sdk-starter</module>
    </modules>
    <distributionManagement>
        <repository>
            <id>bytedance-Volcengine</id>
            <url>https://artifact-maven.byted.org/repository/Volcengine/</url>
        </repository>
<!--        <repository>-->
<!--            <id>bytedance-releases</id>-->
<!--            <url>http://maven.byted.org/repository/releases</url>-->
<!--        </repository>-->
    </distributionManagement>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.2.1</version>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.0.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
