39 lines
1.4 KiB
XML
39 lines
1.4 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">
|
|
<parent>
|
|
<artifactId>cf-framework-parent</artifactId>
|
|
<groupId>com.cf</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>../../cf-framework-parent/pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>cf-chat-interface</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.cf</groupId>
|
|
<artifactId>cf-framework-common</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>javassist</artifactId>
|
|
<groupId>org.javassist</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.cf</groupId>
|
|
<artifactId>cf-chat-domain</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>4.1.32.Final</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |