2018-05-27 05:38:50 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
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>
|
2018-09-26 18:08:46 +08:00
|
|
|
<groupId>org.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-06-10 07:26:54 +08:00
|
|
|
|
2018-09-11 01:48:17 +08:00
|
|
|
<artifactId>ray-api</artifactId>
|
|
|
|
<name>ray api</name>
|
|
|
|
<description>java api for ray</description>
|
2018-05-27 05:38:50 +08:00
|
|
|
|
2018-09-11 01:48:17 +08:00
|
|
|
<packaging>jar</packaging>
|
2018-09-26 20:14:22 +08:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</dependency>
|
2019-01-16 07:15:00 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
|
|
|
</dependency>
|
2018-09-26 20:14:22 +08:00
|
|
|
</dependencies>
|
2018-05-27 05:38:50 +08:00
|
|
|
</project>
|