1
|
-<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">
|
|
|
2
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
3
|
- <parent>
|
|
|
4
|
- <groupId>com.yoho</groupId>
|
|
|
5
|
- <artifactId>parent</artifactId>
|
|
|
6
|
- <version>1.1.4-SNAPSHOT</version>
|
|
|
7
|
- </parent>
|
|
|
8
|
-
|
|
|
9
|
- <groupId>com.yohomars.search</groupId>
|
|
|
10
|
- <artifactId>yohomars-search-parent</artifactId>
|
|
|
11
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
12
|
- <packaging>pom</packaging>
|
|
|
13
|
-
|
|
|
14
|
- <modules>
|
|
|
15
|
- <module>yohomars-search-core</module>
|
|
|
16
|
- <module>yohomars-search-dal</module>
|
|
|
17
|
- <module>yohomars-search-service</module>
|
|
|
18
|
- <module>deploy</module>
|
|
|
19
|
- </modules>
|
|
|
20
|
-
|
|
|
21
|
- <properties>
|
|
|
22
|
- <project-name>yohomars-search-parent</project-name>
|
|
|
23
|
- </properties>
|
|
|
24
|
-
|
|
|
25
|
- <dependencies>
|
|
|
26
|
- <dependency>
|
|
|
27
|
- <groupId>com.yoho.core</groupId>
|
|
|
28
|
- <artifactId>yoho-core-dal</artifactId>
|
|
|
29
|
- <exclusions>
|
|
|
30
|
- <exclusion>
|
|
|
31
|
- <groupId>com.alibaba</groupId>
|
|
|
32
|
- <artifactId>fastjson</artifactId>
|
|
|
33
|
- </exclusion>
|
|
|
34
|
- <exclusion>
|
|
|
35
|
- <groupId>org.elasticsearch</groupId>
|
|
|
36
|
- <artifactId>elasticsearch</artifactId>
|
|
|
37
|
- </exclusion>
|
|
|
38
|
- </exclusions>
|
|
|
39
|
- </dependency>
|
|
|
40
|
- </dependencies>
|
|
|
41
|
-
|
|
|
42
|
- <dependencyManagement>
|
|
|
43
|
- <dependencies>
|
|
|
44
|
- <dependency>
|
|
|
45
|
- <groupId>com.yohomars.search</groupId>
|
|
|
46
|
- <artifactId>yohomars-search-core</artifactId>
|
|
|
47
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
48
|
- </dependency>
|
|
|
49
|
- <dependency>
|
|
|
50
|
- <groupId>com.yohomars.search</groupId>
|
|
|
51
|
- <artifactId>yohomars-search-dal</artifactId>
|
|
|
52
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
53
|
- </dependency>
|
|
|
54
|
- </dependencies>
|
|
|
55
|
- </dependencyManagement>
|
|
|
56
|
-
|
|
|
57
|
- <repositories>
|
|
|
58
|
- <repository>
|
|
|
59
|
- <snapshots>
|
|
|
60
|
- <enabled>true</enabled>
|
|
|
61
|
- </snapshots>
|
|
|
62
|
- <id>public</id>
|
|
|
63
|
- <name>Public Repositories</name>
|
|
|
64
|
- <url>http://192.168.102.168:18081/nexus/content/groups/public/</url>
|
|
|
65
|
- </repository>
|
|
|
66
|
- </repositories>
|
|
|
67
|
- <pluginRepositories>
|
|
|
68
|
- <pluginRepository>
|
|
|
69
|
- <id>public</id>
|
|
|
70
|
- <name>Public Repositories</name>
|
|
|
71
|
- <url>http://192.168.102.168:18081/nexus/content/groups/public/</url>
|
|
|
72
|
- </pluginRepository>
|
|
|
73
|
- </pluginRepositories>
|
|
|
74
|
- <distributionManagement>
|
|
|
75
|
- <repository>
|
|
|
76
|
- <id>releases</id>
|
|
|
77
|
- <name>Internal Releases</name>
|
|
|
78
|
- <url>http://192.168.102.168:18081/nexus/content/repositories/releases</url>
|
|
|
79
|
- </repository>
|
|
|
80
|
- <snapshotRepository>
|
|
|
81
|
- <id>snapshots</id>
|
|
|
82
|
- <name>Internal snapshots</name>
|
|
|
83
|
- <url>http://192.168.102.168:18081/nexus/content/repositories/snapshots</url>
|
|
|
84
|
- </snapshotRepository>
|
|
|
85
|
- </distributionManagement>
|
|
|
86
|
-
|
|
|
87
|
- <build>
|
|
|
88
|
- <plugins>
|
|
|
89
|
- <plugin>
|
|
|
90
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
91
|
- <version>3.3</version>
|
|
|
92
|
- <configuration>
|
|
|
93
|
- <source>1.8</source>
|
|
|
94
|
- <target>1.8</target>
|
|
|
95
|
- </configuration>
|
|
|
96
|
- </plugin>
|
|
|
97
|
- </plugins>
|
|
|
98
|
- </build>
|
|
|
99
|
-
|
1
|
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
2
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
3
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
4
|
+ <parent>
|
|
|
5
|
+ <groupId>com.yoho</groupId>
|
|
|
6
|
+ <artifactId>parent</artifactId>
|
|
|
7
|
+ <version>1.1.4-SNAPSHOT</version>
|
|
|
8
|
+ </parent>
|
|
|
9
|
+
|
|
|
10
|
+ <groupId>com.yohomars.search</groupId>
|
|
|
11
|
+ <artifactId>yohomars-search-parent</artifactId>
|
|
|
12
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
13
|
+ <packaging>pom</packaging>
|
|
|
14
|
+
|
|
|
15
|
+ <modules>
|
|
|
16
|
+ <module>yohomars-search-core</module>
|
|
|
17
|
+ <module>yohomars-search-dal</module>
|
|
|
18
|
+ <module>yohomars-search-service</module>
|
|
|
19
|
+ <module>deploy</module>
|
|
|
20
|
+ </modules>
|
|
|
21
|
+
|
|
|
22
|
+ <properties>
|
|
|
23
|
+ <project-name>yohomars-search-parent</project-name>
|
|
|
24
|
+ </properties>
|
|
|
25
|
+
|
|
|
26
|
+ <dependencies>
|
|
|
27
|
+ <dependency>
|
|
|
28
|
+ <groupId>com.yoho.core</groupId>
|
|
|
29
|
+ <artifactId>yoho-core-dal</artifactId>
|
|
|
30
|
+ <exclusions>
|
|
|
31
|
+ <exclusion>
|
|
|
32
|
+ <groupId>com.alibaba</groupId>
|
|
|
33
|
+ <artifactId>fastjson</artifactId>
|
|
|
34
|
+ </exclusion>
|
|
|
35
|
+ <exclusion>
|
|
|
36
|
+ <groupId>org.elasticsearch</groupId>
|
|
|
37
|
+ <artifactId>elasticsearch</artifactId>
|
|
|
38
|
+ </exclusion>
|
|
|
39
|
+ </exclusions>
|
|
|
40
|
+ </dependency>
|
|
|
41
|
+ </dependencies>
|
|
|
42
|
+
|
|
|
43
|
+ <dependencyManagement>
|
|
|
44
|
+ <dependencies>
|
|
|
45
|
+ <dependency>
|
|
|
46
|
+ <groupId>com.yohomars.search</groupId>
|
|
|
47
|
+ <artifactId>yohomars-search-core</artifactId>
|
|
|
48
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
49
|
+ </dependency>
|
|
|
50
|
+ <dependency>
|
|
|
51
|
+ <groupId>com.yohomars.search</groupId>
|
|
|
52
|
+ <artifactId>yohomars-search-dal</artifactId>
|
|
|
53
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
54
|
+ </dependency>
|
|
|
55
|
+ </dependencies>
|
|
|
56
|
+ </dependencyManagement>
|
|
|
57
|
+
|
|
|
58
|
+ <repositories>
|
|
|
59
|
+ <repository>
|
|
|
60
|
+ <snapshots>
|
|
|
61
|
+ <enabled>true</enabled>
|
|
|
62
|
+ </snapshots>
|
|
|
63
|
+ <id>public</id>
|
|
|
64
|
+ <name>Public Repositories</name>
|
|
|
65
|
+ <url>http://192.168.102.168:18081/nexus/content/groups/public/</url>
|
|
|
66
|
+ </repository>
|
|
|
67
|
+ </repositories>
|
|
|
68
|
+ <pluginRepositories>
|
|
|
69
|
+ <pluginRepository>
|
|
|
70
|
+ <id>public</id>
|
|
|
71
|
+ <name>Public Repositories</name>
|
|
|
72
|
+ <url>http://192.168.102.168:18081/nexus/content/groups/public/</url>
|
|
|
73
|
+ </pluginRepository>
|
|
|
74
|
+ </pluginRepositories>
|
|
|
75
|
+ <distributionManagement>
|
|
|
76
|
+ <repository>
|
|
|
77
|
+ <id>releases</id>
|
|
|
78
|
+ <name>Internal Releases</name>
|
|
|
79
|
+ <url>http://192.168.102.168:18081/nexus/content/repositories/releases</url>
|
|
|
80
|
+ </repository>
|
|
|
81
|
+ <snapshotRepository>
|
|
|
82
|
+ <id>snapshots</id>
|
|
|
83
|
+ <name>Internal snapshots</name>
|
|
|
84
|
+ <url>http://192.168.102.168:18081/nexus/content/repositories/snapshots</url>
|
|
|
85
|
+ </snapshotRepository>
|
|
|
86
|
+ </distributionManagement>
|
|
|
87
|
+
|
|
|
88
|
+ <build>
|
|
|
89
|
+ <plugins>
|
|
|
90
|
+ <plugin>
|
|
|
91
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
92
|
+ <version>3.3</version>
|
|
|
93
|
+ <configuration>
|
|
|
94
|
+ <source>1.8</source>
|
|
|
95
|
+ <target>1.8</target>
|
|
|
96
|
+ </configuration>
|
|
|
97
|
+ </plugin>
|
|
|
98
|
+ </plugins>
|
|
|
99
|
+ </build>
|
|
|
100
|
+
|
100
|
</project> |
101
|
</project> |