2018-05-27 05:38:50 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-05-16 11:19:31 +08:00
|
|
|
<!-- This file is auto-generated by Bazel from pom_template.xml, do not modify it. -->
|
2018-05-27 05:38:50 +08:00
|
|
|
|
2018-06-10 07:26:54 +08:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-09-11 01:48:17 +08:00
|
|
|
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">
|
|
|
|
<parent>
|
2020-04-12 17:59:34 +08:00
|
|
|
<groupId>io.ray</groupId>
|
2018-09-11 01:48:17 +08:00
|
|
|
<artifactId>ray-superpom</artifactId>
|
2018-09-26 18:08:46 +08:00
|
|
|
<version>0.1-SNAPSHOT</version>
|
2018-09-11 01:48:17 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-05-27 05:38:50 +08:00
|
|
|
|
2018-09-11 01:48:17 +08:00
|
|
|
<artifactId>ray-tutorial</artifactId>
|
2018-05-27 05:38:50 +08:00
|
|
|
|
2018-09-11 01:48:17 +08:00
|
|
|
<name>java tutorial</name>
|
|
|
|
<description>Tutorial of using Ray with Java</description>
|
2018-05-27 05:38:50 +08:00
|
|
|
|
2018-09-11 01:48:17 +08:00
|
|
|
<packaging>jar</packaging>
|
2018-05-27 05:38:50 +08:00
|
|
|
|
2018-09-11 01:48:17 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2020-04-12 17:59:34 +08:00
|
|
|
<groupId>io.ray</groupId>
|
2018-09-11 01:48:17 +08:00
|
|
|
<artifactId>ray-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-04-12 17:59:34 +08:00
|
|
|
<groupId>io.ray</groupId>
|
2018-09-11 01:48:17 +08:00
|
|
|
<artifactId>ray-runtime</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-05-16 11:19:31 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>27.0.1-jre</version>
|
|
|
|
</dependency>
|
2018-09-11 01:48:17 +08:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.20.1</version>
|
|
|
|
<configuration>
|
|
|
|
<environmentVariables>
|
|
|
|
<RAY_CONFIG>${basedir}/../ray.config.ini</RAY_CONFIG>
|
|
|
|
</environmentVariables>
|
|
|
|
<argLine>-ea
|
2018-10-26 13:36:58 -07:00
|
|
|
-Djava.library.path=${basedir}/../../build/src/plasma:${basedir}/../../build/src/ray/raylet
|
2018-09-11 01:48:17 +08:00
|
|
|
-noverify
|
|
|
|
-DlogOutput=console
|
|
|
|
</argLine>
|
|
|
|
<testSourceDirectory>${basedir}/src/main/java/</testSourceDirectory>
|
|
|
|
<testClassesDirectory>${project.build.directory}/classes/</testClassesDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/lib</outputDirectory>
|
|
|
|
<overWriteReleases>false</overWriteReleases>
|
|
|
|
<overWriteSnapshots>false</overWriteSnapshots>
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-07-29 08:09:30 +08:00
|
|
|
</project>
|