87 lines
2.5 KiB
XML
87 lines
2.5 KiB
XML
<?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>
|
|
<artifactId>rc-service-live</artifactId>
|
|
<description>直播服务</description>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>live-domain</module>
|
|
<module>live-infrastructure</module>
|
|
<module>live-client</module>
|
|
<module>live-application</module>
|
|
<module>live-adapter</module>
|
|
<module>live-inner-endpoint</module>
|
|
<module>live-start</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>other-inner-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>external-inner-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>live-inner-model</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>live-adapter</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>live-application</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>live-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>live-domain</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>live-infrastructure</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>live-inner-endpoint</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<properties>
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
</properties>
|
|
|
|
<parent>
|
|
<artifactId>rc-service</artifactId>
|
|
<groupId>com.red.circle</groupId>
|
|
<version>${revision}</version>
|
|
<relativePath>./../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
</project>
|