-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
117 lines (107 loc) · 4.92 KB
/
pom.xml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?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>
<groupId>com.ifreetv</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>base-proxy-visitor</module>
<module>base-utils</module>
<module>business-data-center</module>
<module>business-web-service-center</module>
</modules>
<properties>
<common-lang3.version>3.0</common-lang3.version>
<org.slf4j.version>1.7.18</org.slf4j.version>
<junit.version>4.1.1</junit.version>
<com.alibaba.fastjson.version>1.2.4</com.alibaba.fastjson.version>
<redis.clients.version>2.8.0</redis.clients.version>
<org.mongodb.driver.version>3.2.1</org.mongodb.driver.version>
<org.spring.version>4.2.4.RELEASE</org.spring.version>
<commons-beanutils.version>1.9.2</commons-beanutils.version>
<org.junit.version>4.12</org.junit.version>
<org.apache.zookeeper.version>3.4.6</org.apache.zookeeper.version>
<com.101tec.zkclient.version>0.6</com.101tec.zkclient.version>
<org.apache.httpcomponents.httpclient>4.5</org.apache.httpcomponents.httpclient>
<ch.qos.logback.version>1.1.6</ch.qos.logback.version>
<org.mybatis.version>3.3.0</org.mybatis.version>
<mysql-connector-java.version>5.1.36</mysql-connector-java.version>
<com.alibaba.druid.version>1.0.16</com.alibaba.druid.version>
<org.mybatis-spring.version>1.2.3</org.mybatis-spring.version>
<org.apache.curator.version>2.9.0</org.apache.curator.version>
<jsoup.version>1.8.2</jsoup.version>
<quartz.version>2.2.1</quartz.version>
<pagehelper.version>4.1.1</pagehelper.version>
<servlet.version>3.0-alpha-1</servlet.version>
<servlet.jsp.version>2.1</servlet.jsp.version>
<thrift.version>0.9.3</thrift.version>
<dom4j.version>1.6.1</dom4j.version>
<commons-net.version>3.5</commons-net.version>
<commons-fileupload.version>1.3.2</commons-fileupload.version>
<jackson-core.version>2.6.3</jackson-core.version>
<jackson-databind.version>2.6.3</jackson-databind.version>
<jackson-core-lgpl.version>1.9.13</jackson-core-lgpl.version>
<jackson-mapper-asl.version>1.9.13</jackson-mapper-asl.version>
<jackson-core-asl.version>1.9.13</jackson-core-asl.version>
<active-mq.version>5.11.2</active-mq.version>
<aspect-jrt-version>1.8.9</aspect-jrt-version>
<aspect-jweaver-version>1.7.4</aspect-jweaver-version>
<aop-alliance-version>1.0</aop-alliance-version>
<okhttp.version>3.9.1</okhttp.version>
</properties>
<profiles>
<profile>
<id>local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<log.level>DEBUG</log.level>
<log.path>D:/logPath</log.path>
<!-- java2用户 -->
<zk.address>192.168.3.203:2182</zk.address>
<!-- JAVA帐户tomcat -->
<configPath.path>http://47.93.51.153:8080/config/local/</configPath.path>
<node.intervalTime>3000</node.intervalTime>
</properties>
</profile>
<profile>
<id>dev</id>
<properties>
<log.level>DEBUG</log.level>
<log.path>/app/logs/</log.path>
<zk.address>127.0.0.1:2181</zk.address>
<configPath.path>http://47.93.51.153:8080/config/online/</configPath.path>
<node.intervalTime>3000</node.intervalTime>
</properties>
</profile>
<profile>
<id>qa</id>
<properties>
<log.level>INFO</log.level>
<log.path>/app/logs</log.path>
<zk.address>127.0.0.1:2181</zk.address>
<configPath.path>http://47.93.51.153:8080/config/online/</configPath.path>
<node.intervalTime>3000</node.intervalTime>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<log.level>INFO</log.level>
<log.path>/alidata1/logs</log.path>
<configPath.path>http://47.93.51.153:8080/config/online/</configPath.path>
<node.intervalTime>3000</node.intervalTime>
</properties>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>snapshots</id>
<url>http://47.93.51.153:8081/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>