ray/streaming/java/streaming-api/pom_template.xml

38 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2020-04-28 10:36:32 +08:00
{auto_gen_header}
<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/maven-v4_0_0.xsd">
2020-07-30 11:48:31 +08:00
<parent>
<artifactId>ray-streaming</artifactId>
<groupId>io.ray</groupId>
2020-09-16 12:05:11 +08:00
<version>1.1.0-SNAPSHOT</version>
2020-07-30 11:48:31 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
2020-07-30 11:48:31 +08:00
<artifactId>streaming-api</artifactId>
<name>ray streaming api</name>
<description>ray streaming api</description>
2020-07-30 11:48:31 +08:00
<packaging>jar</packaging>
2020-07-30 11:48:31 +08:00
<dependencies>
<dependency>
<groupId>io.ray</groupId>
<artifactId>ray-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.ray</groupId>
<artifactId>ray-runtime</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.ray</groupId>
<artifactId>streaming-state</artifactId>
<version>${project.version}</version>
</dependency>
{generated_bzl_deps}
</dependencies>
</project>