|
@ -1,140 +0,0 @@
|
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
|
|
|
5
|
|
<groupId>com.ai.ipu.mobile</groupId>
|
6
|
|
<artifactId>ipu-mobile-aggregator</artifactId>
|
7
|
|
<version>3.0</version>
|
8
|
|
<packaging>pom</packaging>
|
9
|
|
|
10
|
|
<!-- <modules>
|
11
|
|
<module>../ipu-mobile-basic</module>
|
12
|
|
<module>../ipu-mobile</module>
|
13
|
|
<module>../ipu-count</module>
|
14
|
|
</modules> -->
|
15
|
|
|
16
|
|
<distributionManagement>
|
17
|
|
<repository>
|
18
|
|
<id>nexus-service-ipu-repository</id>
|
19
|
|
<name>nexus service ipu repository</name>
|
20
|
|
<url>http://114.215.100.48:9090/nexus/content/repositories/ipu/</url>
|
21
|
|
</repository>
|
22
|
|
</distributionManagement>
|
23
|
|
|
24
|
|
<!-- 定义公共变量 -->
|
25
|
|
<properties>
|
26
|
|
<encoding>UTF-8</encoding>
|
27
|
|
<junit>3.8.1</junit>
|
28
|
|
|
29
|
|
<!-- ipu jar -->
|
30
|
|
<ipu>3.0</ipu>
|
31
|
|
<wade>1.0</wade>
|
32
|
|
|
33
|
|
<!-- 3rd party jar -->
|
34
|
|
<android>22</android>
|
35
|
|
<android-support-v4>1.0</android-support-v4>
|
36
|
|
<android-support-v7-appcompat>1.0</android-support-v7-appcompat>
|
37
|
|
<android-support-v7-gridlayout>1.0</android-support-v7-gridlayout>
|
38
|
|
<android-support-v7-mediarouter>1.0</android-support-v7-mediarouter>
|
39
|
|
<android-annotations>1.0</android-annotations>
|
40
|
|
<unirest-for-android>1.0</unirest-for-android>
|
41
|
|
<achartengine>1.1</achartengine>
|
42
|
|
|
43
|
|
<!-- 插件 -->
|
44
|
|
<maven-resources-plugin>2.6</maven-resources-plugin>
|
45
|
|
<maven-surefire-plugin>2.5</maven-surefire-plugin>
|
46
|
|
</properties>
|
47
|
|
|
48
|
|
<dependencyManagement>
|
49
|
|
<dependencies>
|
50
|
|
<!-- Central jar -->
|
51
|
|
<dependency>
|
52
|
|
<groupId>junit</groupId>
|
53
|
|
<artifactId>junit</artifactId>
|
54
|
|
<version>${junit}</version>
|
55
|
|
<scope>test</scope>
|
56
|
|
</dependency>
|
57
|
|
<!-- ipu jar -->
|
58
|
|
<dependency>
|
59
|
|
<groupId>com.ai.ipu</groupId>
|
60
|
|
<artifactId>ipu-basic</artifactId>
|
61
|
|
<version>${ipu}</version>
|
62
|
|
</dependency>
|
63
|
|
<dependency>
|
64
|
|
<groupId>com.ai.ipu</groupId>
|
65
|
|
<artifactId>ipu-common</artifactId>
|
66
|
|
<version>${ipu}</version>
|
67
|
|
</dependency>
|
68
|
|
<dependency>
|
69
|
|
<groupId>com.ai.wade</groupId>
|
70
|
|
<artifactId>wade-mobile-data</artifactId>
|
71
|
|
<version>${wade}</version>
|
72
|
|
</dependency>
|
73
|
|
<!-- 3rd party jar -->
|
74
|
|
<dependency>
|
75
|
|
<groupId>android</groupId>
|
76
|
|
<artifactId>android</artifactId>
|
77
|
|
<version>${android}</version>
|
78
|
|
</dependency>
|
79
|
|
<dependency>
|
80
|
|
<groupId>android</groupId>
|
81
|
|
<artifactId>android-support-v4</artifactId>
|
82
|
|
<version>${android-support-v4}</version>
|
83
|
|
</dependency>
|
84
|
|
<dependency>
|
85
|
|
<groupId>android</groupId>
|
86
|
|
<artifactId>android-support-v7-appcompat</artifactId>
|
87
|
|
<version>${android-support-v7-appcompat}</version>
|
88
|
|
</dependency>
|
89
|
|
<dependency>
|
90
|
|
<groupId>android</groupId>
|
91
|
|
<artifactId>android-support-v7-gridlayout</artifactId>
|
92
|
|
<version>${android-support-v7-gridlayout}</version>
|
93
|
|
</dependency>
|
94
|
|
<dependency>
|
95
|
|
<groupId>android</groupId>
|
96
|
|
<artifactId>android-support-v7-mediarouter</artifactId>
|
97
|
|
<version>${android-support-v7-mediarouter}</version>
|
98
|
|
</dependency>
|
99
|
|
<dependency>
|
100
|
|
<groupId>android</groupId>
|
101
|
|
<artifactId>android-annotations</artifactId>
|
102
|
|
<version>${android-annotations}</version>
|
103
|
|
</dependency>
|
104
|
|
<dependency>
|
105
|
|
<groupId>android</groupId>
|
106
|
|
<artifactId>achartengine</artifactId>
|
107
|
|
<version>${achartengine}</version>
|
108
|
|
</dependency>
|
109
|
|
<dependency>
|
110
|
|
<groupId>com</groupId>
|
111
|
|
<artifactId>unirest-for-android</artifactId>
|
112
|
|
<version>${unirest-for-android}</version>
|
113
|
|
</dependency>
|
114
|
|
</dependencies>
|
115
|
|
</dependencyManagement>
|
116
|
|
|
117
|
|
<build>
|
118
|
|
<pluginManagement>
|
119
|
|
<plugins>
|
120
|
|
<plugin>
|
121
|
|
<groupId>org.apache.maven.plugins</groupId>
|
122
|
|
<artifactId>maven-resources-plugin</artifactId>
|
123
|
|
<version>${maven-resources-plugin}</version>
|
124
|
|
<configuration>
|
125
|
|
<!--指定编码格式,否则在DOS下运行mvn命令时当发生文件资源copy时将使用系统默认使用GBK编码 -->
|
126
|
|
<encoding>${encoding}</encoding>
|
127
|
|
</configuration>
|
128
|
|
</plugin>
|
129
|
|
<plugin>
|
130
|
|
<groupId>org.apache.maven.plugins</groupId>
|
131
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
132
|
|
<version>${maven-surefire-plugin}</version>
|
133
|
|
<configuration>
|
134
|
|
<skip>true</skip>
|
135
|
|
</configuration>
|
136
|
|
</plugin>
|
137
|
|
</plugins>
|
138
|
|
</pluginManagement>
|
139
|
|
</build>
|
140
|
|
</project>
|