cy
2022-10-11 64670dc728cf83a047e8773835937b842d5535ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?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>
  <modules>
    <module>recommend-common</module>
    <module>recommend-text</module>
    <module>recommend-video</module>
    <module>recommend-model-pojo</module>
    <module>deploy-jar-template</module>
  </modules>
 
  <parent>
    <groupId>com.iplatform</groupId>
    <artifactId>iplatform</artifactId>
    <version>1.0.0-SNAPSHOT</version>
  </parent>
 
  <groupId>com.iplatform</groupId>
  <artifactId>train_recommend</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <name>train_recommend</name>
  <packaging>pom</packaging>
 
  <properties>
    <recommend-common.version>1.0.0-SNAPSHOT</recommend-common.version>
    <recommend-text.version>1.0.0-SNAPSHOT</recommend-text.version>
    <recommend-video.version>1.0.0-SNAPSHOT</recommend-video.version>
    <recommend-model-pojo.version>1.0.0-SNAPSHOT</recommend-model-pojo.version>
    <deploy-jar-template.version>1.0.0-SNAPSHOT</deploy-jar-template.version>
  </properties>
 
  <dependencyManagement>
    <dependencies>
 
      <!-- 发布JAR包 -->
      <dependency>
        <groupId>com.iplatform</groupId>
        <artifactId>deploy-jar-template</artifactId>
        <version>${deploy-jar-template.version}</version>
      </dependency>
 
      <!-- 业务通用模块,其他功能会依赖该模块,2022/09/08 -->
      <dependency>
        <groupId>com.iplatform</groupId>
        <artifactId>recommend-common</artifactId>
        <version>${recommend-common.version}</version>
      </dependency>
 
      <!-- 文本推荐模块:课程、讲师等,2022/09/08 -->
      <dependency>
        <groupId>com.iplatform</groupId>
        <artifactId>recommend-text</artifactId>
        <version>${recommend-text.version}</version>
      </dependency>
 
      <!-- 短视频推荐模块,2022/09/08 -->
      <dependency>
        <groupId>com.iplatform</groupId>
        <artifactId>recommend-video</artifactId>
        <version>${recommend-video.version}</version>
      </dependency>
 
      <!-- 接口对象(pojo)模块,2022/09/22 -->
      <dependency>
        <groupId>com.iplatform</groupId>
        <artifactId>recommend-model-pojo</artifactId>
        <version>${recommend-model-pojo.version}</version>
      </dependency>
 
    </dependencies>
  </dependencyManagement>
 
</project>