2019-12-22 10:56:05 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2020-07-30 11:48:31 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>io.ray</groupId>
|
|
|
|
<artifactId>ray-streaming</artifactId>
|
2020-08-01 22:38:22 +08:00
|
|
|
<version>0.9.0-SNAPSHOT</version>
|
2020-07-30 11:48:31 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Ray Project Streaming Parent POM</name>
|
|
|
|
<description>A streaming framework built on ray</description>
|
|
|
|
<url>https://github.com/ray-project/ray</url>
|
2019-12-22 10:56:05 +08:00
|
|
|
|
2020-07-30 11:48:31 +08:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2019-12-22 10:56:05 +08:00
|
|
|
|
2020-07-30 11:48:31 +08:00
|
|
|
<scm>
|
|
|
|
<url>https://github.com/ray-project/ray</url>
|
|
|
|
<connection>git@github.com:ray-project/ray.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com:ray-project/ray.git</developerConnection>
|
|
|
|
</scm>
|
2019-12-22 10:56:05 +08:00
|
|
|
|
2020-07-30 11:48:31 +08:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2019-12-22 10:56:05 +08:00
|
|
|
|
2020-08-15 02:31:01 +08:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spring</id>
|
|
|
|
<url>https://repo.spring.io/plugins-release/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<url>https://repo1.maven.org/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2020-07-30 11:48:31 +08:00
|
|
|
<modules>
|
|
|
|
<module>streaming-api</module>
|
|
|
|
<module>streaming-runtime</module>
|
|
|
|
<module>streaming-state</module>
|
|
|
|
</modules>
|
2019-12-22 10:56:05 +08:00
|
|
|
|
2020-07-30 11:48:31 +08:00
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-08-01 22:38:22 +08:00
|
|
|
<projetct.version>0.9.0-SNAPSHOT</projetct.version>
|
2020-07-30 11:48:31 +08:00
|
|
|
<slf4j.version>1.7.25</slf4j.version>
|
|
|
|
<log4j.version>1.2.17</log4j.version>
|
2020-07-31 11:49:31 +08:00
|
|
|
<testng.version>7.1.0</testng.version>
|
2020-07-30 11:48:31 +08:00
|
|
|
<mockito.version>1.10.19</mockito.version>
|
|
|
|
<guava.version>27.0.1-jre</guava.version>
|
|
|
|
<fst.version>2.57</fst.version>
|
|
|
|
</properties>
|
2019-12-22 10:56:05 +08:00
|
|
|
|
2020-07-30 11:48:31 +08:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>release</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<output.directory>${basedir}</output.directory>
|
|
|
|
</properties>
|
|
|
|
<build>
|
2020-01-21 15:41:54 +08:00
|
|
|
<plugins>
|
2020-07-30 11:48:31 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
</plugin>
|
2020-01-21 15:41:54 +08:00
|
|
|
</plugins>
|
2020-07-30 11:48:31 +08:00
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
<version>${testng.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.6.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
|
|
<testCompilerArgument>-parameters</testCompilerArgument>
|
|
|
|
</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>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>2.10</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>deploy</id>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>deploy</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>validate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>../../java/checkstyle.xml</configLocation>
|
|
|
|
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
<failsOnError>true</failsOnError>
|
|
|
|
<failOnViolation>true</failOnViolation>
|
|
|
|
<violationSeverity>warning</violationSeverity>
|
|
|
|
<outputFile>${project.build.directory}/checkstyle-errors.xml</outputFile>
|
|
|
|
<linkXRef>false</linkXRef>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!-- Prevent `gpg` from using pinentry programs -->
|
|
|
|
<gpgArguments>
|
|
|
|
<arg>--pinentry-mode</arg>
|
|
|
|
<arg>loopback</arg>
|
|
|
|
</gpgArguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-12-22 10:56:05 +08:00
|
|
|
|
|
|
|
</project>
|