| 5432 |
amar.kumar |
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 |
<groupId>in.shop2020</groupId>
|
|
|
5 |
<artifactId>UserService</artifactId>
|
|
|
6 |
<packaging>jar</packaging>
|
|
|
7 |
<version>1.0-SNAPSHOT</version>
|
|
|
8 |
|
|
|
9 |
<parent>
|
|
|
10 |
<groupId>in.shop2020</groupId>
|
|
|
11 |
<artifactId>parent</artifactId>
|
|
|
12 |
<version>1.0-SNAPSHOT</version>
|
|
|
13 |
</parent>
|
|
|
14 |
|
|
|
15 |
<build>
|
|
|
16 |
<plugins>
|
|
|
17 |
<plugin>
|
|
|
18 |
<groupId>org.dstovall</groupId>
|
|
|
19 |
<artifactId>onejar-maven-plugin</artifactId>
|
|
|
20 |
<version>1.4.4</version>
|
|
|
21 |
<executions>
|
|
|
22 |
<execution>
|
|
|
23 |
<configuration>
|
|
|
24 |
<mainClass>in.shop2020.user.service.UserServer</mainClass>
|
|
|
25 |
</configuration>
|
|
|
26 |
<goals>
|
|
|
27 |
<goal>one-jar</goal>
|
|
|
28 |
</goals>
|
|
|
29 |
</execution>
|
|
|
30 |
</executions>
|
|
|
31 |
</plugin>
|
|
|
32 |
</plugins>
|
|
|
33 |
</build>
|
|
|
34 |
|
|
|
35 |
<pluginRepositories>
|
|
|
36 |
<pluginRepository>
|
|
|
37 |
<id>onejar-maven-plugin.googlecode.com</id>
|
|
|
38 |
<url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
|
|
|
39 |
</pluginRepository>
|
|
|
40 |
</pluginRepositories>
|
|
|
41 |
|
|
|
42 |
<dependencies>
|
|
|
43 |
<dependency>
|
|
|
44 |
<groupId>org.springframework</groupId>
|
|
|
45 |
<artifactId>spring-context</artifactId>
|
|
|
46 |
<version>3.0.5.RELEASE</version>
|
|
|
47 |
</dependency>
|
|
|
48 |
<dependency>
|
|
|
49 |
<groupId>org.springframework.security</groupId>
|
|
|
50 |
<artifactId>spring-security-config</artifactId>
|
|
|
51 |
<version>3.0.5.RELEASE</version>
|
|
|
52 |
</dependency>
|
|
|
53 |
<dependency>
|
|
|
54 |
<groupId>org.springframework</groupId>
|
|
|
55 |
<artifactId>spring-core</artifactId>
|
|
|
56 |
<version>3.0.5.RELEASE</version>
|
|
|
57 |
</dependency>
|
|
|
58 |
<dependency>
|
|
|
59 |
<groupId>org.springframework</groupId>
|
|
|
60 |
<artifactId>spring-expression</artifactId>
|
|
|
61 |
<version>3.0.5.RELEASE</version>
|
|
|
62 |
</dependency>
|
|
|
63 |
<dependency>
|
|
|
64 |
<groupId>org.springframework</groupId>
|
|
|
65 |
<artifactId>spring-jdbc</artifactId>
|
|
|
66 |
<version>3.0.5.RELEASE</version>
|
|
|
67 |
</dependency>
|
|
|
68 |
<dependency>
|
|
|
69 |
<groupId>org.springframework</groupId>
|
|
|
70 |
<artifactId>spring-tx</artifactId>
|
|
|
71 |
<version>3.0.5.RELEASE</version>
|
|
|
72 |
</dependency>
|
|
|
73 |
<dependency>
|
|
|
74 |
<groupId>junit</groupId>
|
|
|
75 |
<artifactId>junit</artifactId>
|
|
|
76 |
<version>4.8.2</version>
|
|
|
77 |
<scope>test</scope>
|
|
|
78 |
</dependency>
|
|
|
79 |
<dependency>
|
|
|
80 |
<groupId>org.apache.thrift</groupId>
|
|
|
81 |
<artifactId>libthrift</artifactId>
|
|
|
82 |
<version>0.7.0</version>
|
|
|
83 |
</dependency>
|
|
|
84 |
<dependency>
|
|
|
85 |
<groupId>log4j</groupId>
|
|
|
86 |
<artifactId>log4j</artifactId>
|
|
|
87 |
<version>1.2.16</version>
|
|
|
88 |
</dependency>
|
|
|
89 |
<dependency>
|
|
|
90 |
<groupId>commons-logging</groupId>
|
|
|
91 |
<artifactId>commons-logging</artifactId>
|
|
|
92 |
<version>1.1.1</version>
|
|
|
93 |
</dependency>
|
|
|
94 |
<dependency>
|
|
|
95 |
<groupId>cglib</groupId>
|
|
|
96 |
<artifactId>cglib</artifactId>
|
|
|
97 |
<version>2.2</version>
|
|
|
98 |
</dependency>
|
|
|
99 |
<dependency>
|
|
|
100 |
<groupId>commons-pool</groupId>
|
|
|
101 |
<artifactId>commons-pool</artifactId>
|
|
|
102 |
<version>1.5.6</version>
|
|
|
103 |
</dependency>
|
|
|
104 |
<dependency>
|
|
|
105 |
<groupId>commons-dbcp</groupId>
|
|
|
106 |
<artifactId>commons-dbcp</artifactId>
|
|
|
107 |
<version>1.4</version>
|
|
|
108 |
</dependency>
|
|
|
109 |
<dependency>
|
|
|
110 |
<groupId>aopalliance</groupId>
|
|
|
111 |
<artifactId>aopalliance</artifactId>
|
|
|
112 |
<version>1.0</version>
|
|
|
113 |
</dependency>
|
|
|
114 |
<dependency>
|
|
|
115 |
<groupId>asm</groupId>
|
|
|
116 |
<artifactId>asm</artifactId>
|
|
|
117 |
<version>3.1</version>
|
|
|
118 |
</dependency>
|
|
|
119 |
<dependency>
|
|
|
120 |
<groupId>mysql</groupId>
|
|
|
121 |
<artifactId>mysql-connector-java</artifactId>
|
|
|
122 |
<version>5.1.16</version>
|
|
|
123 |
</dependency>
|
|
|
124 |
<dependency>
|
|
|
125 |
<groupId>org.slf4j</groupId>
|
|
|
126 |
<artifactId>slf4j-api</artifactId>
|
|
|
127 |
<version>1.6.1</version>
|
|
|
128 |
</dependency>
|
|
|
129 |
<dependency>
|
|
|
130 |
<groupId>org.slf4j</groupId>
|
|
|
131 |
<artifactId>slf4j-log4j12</artifactId>
|
|
|
132 |
<version>1.6.1</version>
|
|
|
133 |
</dependency>
|
|
|
134 |
<dependency>
|
|
|
135 |
<groupId>org.mybatis</groupId>
|
|
|
136 |
<artifactId>mybatis-spring</artifactId>
|
|
|
137 |
<version>1.0.0</version>
|
|
|
138 |
</dependency>
|
|
|
139 |
<dependency>
|
|
|
140 |
<groupId>org.mybatis</groupId>
|
|
|
141 |
<artifactId>mybatis</artifactId>
|
|
|
142 |
<version>3.0.4</version>
|
|
|
143 |
</dependency>
|
|
|
144 |
<dependency>
|
|
|
145 |
<groupId>commons-daemon</groupId>
|
|
|
146 |
<artifactId>commons-daemon</artifactId>
|
|
|
147 |
<version>1.0.1</version>
|
|
|
148 |
</dependency>
|
|
|
149 |
<dependency>
|
|
|
150 |
<groupId>in.shop2020</groupId>
|
|
|
151 |
<artifactId>ThriftConfig</artifactId>
|
|
|
152 |
<version>1.0-SNAPSHOT</version>
|
|
|
153 |
<exclusions>
|
|
|
154 |
<exclusion>
|
|
|
155 |
<groupId>readonly.slf4j</groupId>
|
|
|
156 |
<artifactId>slf4j-api</artifactId>
|
|
|
157 |
</exclusion>
|
|
|
158 |
<exclusion>
|
|
|
159 |
<groupId>readonly.slf4j</groupId>
|
|
|
160 |
<artifactId>slf4j-simple</artifactId>
|
|
|
161 |
</exclusion>
|
|
|
162 |
</exclusions>
|
|
|
163 |
</dependency>
|
|
|
164 |
<dependency>
|
|
|
165 |
<groupId>in.shop2020</groupId>
|
|
|
166 |
<artifactId>Common</artifactId>
|
|
|
167 |
<version>1.0-SNAPSHOT</version>
|
|
|
168 |
<exclusions>
|
|
|
169 |
<exclusion>
|
|
|
170 |
<groupId>readonly.slf4j</groupId>
|
|
|
171 |
<artifactId>slf4j-api</artifactId>
|
|
|
172 |
</exclusion>
|
|
|
173 |
<exclusion>
|
|
|
174 |
<groupId>readonly.slf4j</groupId>
|
|
|
175 |
<artifactId>slf4j-simple</artifactId>
|
|
|
176 |
</exclusion>
|
|
|
177 |
</exclusions>
|
|
|
178 |
</dependency>
|
|
|
179 |
</dependencies>
|
|
|
180 |
</project>
|