<?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>train_recommend</artifactId>
|
<groupId>com.iplatform</groupId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>recommend-text</artifactId>
|
<name>recommend-text</name>
|
<packaging>jar</packaging>
|
|
<properties>
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
<groupId>com.iplatform</groupId>
|
<artifactId>recommend-common</artifactId>
|
</dependency>
|
|
<!-- 平台模块:文本相似度相似度,2022/09/08 -->
|
<dependency>
|
<groupId>com.iplatform</groupId>
|
<artifactId>iplatform-ml-similarity</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>log4j-slf4j-impl</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
</dependencies>
|
|
</project>
|