Skip to content

Commit 69b1586

Browse files
committed
Add maven
1 parent d4f3deb commit 69b1586

File tree

1,649 files changed

+160334
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,649 files changed

+160334
-11
lines changed

pom.xml

Lines changed: 255 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,255 @@
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/maven-v4_0_0.xsd">
3+
4+
<artifactId>com.giit.www.orderbook</artifactId>
5+
<groupId>core</groupId>
6+
<version>1.0-SNAPSHOT</version>
7+
8+
<modelVersion>4.0.0</modelVersion>
9+
<packaging>war</packaging>
10+
<name>giit</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>junit</groupId>
16+
<artifactId>junit</artifactId>
17+
<version>4.12</version>
18+
<scope>test</scope>
19+
</dependency>
20+
<dependency>
21+
<groupId>org.hamcrest</groupId>
22+
<artifactId>hamcrest-core</artifactId>
23+
<version>1.3</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>commons-collections</groupId>
27+
<artifactId>commons-collections</artifactId>
28+
<version>3.2.1</version>
29+
</dependency>
30+
31+
<dependency>
32+
<groupId>org.apache.shiro</groupId>
33+
<artifactId>shiro-core</artifactId>
34+
<version>1.2.2</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.apache.shiro</groupId>
38+
<artifactId>shiro-ehcache</artifactId>
39+
<version>1.2.2</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.apache.shiro</groupId>
43+
<artifactId>shiro-web</artifactId>
44+
<version>1.2.2</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.apache.shiro</groupId>
48+
<artifactId>shiro-quartz</artifactId>
49+
<version>1.2.2</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.apache.shiro</groupId>
53+
<artifactId>shiro-spring</artifactId>
54+
<version>1.2.2</version>
55+
</dependency>
56+
57+
<dependency>
58+
<groupId>mysql</groupId>
59+
<artifactId>mysql-connector-java</artifactId>
60+
<version>5.1.38</version>
61+
</dependency>
62+
63+
64+
<!-- aspectj相关jar包-->
65+
<dependency>
66+
<groupId>org.aspectj</groupId>
67+
<artifactId>aspectjrt</artifactId>
68+
<version>1.7.4</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.aspectj</groupId>
72+
<artifactId>aspectjweaver</artifactId>
73+
<version>1.7.4</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.springframework</groupId>
77+
<artifactId>spring-test</artifactId>
78+
<version>4.0.0.RELEASE</version>
79+
<scope>test</scope>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.springframework</groupId>
83+
<artifactId>spring-context-support</artifactId>
84+
<version>4.0.0.RELEASE</version>
85+
</dependency>
86+
87+
<dependency>
88+
<groupId>org.springframework</groupId>
89+
<artifactId>spring-jdbc</artifactId>
90+
<version>4.0.0.RELEASE</version>
91+
</dependency>
92+
93+
<dependency>
94+
<groupId>org.springframework</groupId>
95+
<artifactId>spring-tx</artifactId>
96+
<version>4.0.0.RELEASE</version>
97+
</dependency>
98+
99+
<dependency>
100+
<groupId>org.springframework</groupId>
101+
<artifactId>spring-webmvc</artifactId>
102+
<version>4.0.0.RELEASE</version>
103+
</dependency>
104+
105+
106+
<dependency>
107+
<groupId>javax.servlet</groupId>
108+
<artifactId>javax.servlet-api</artifactId>
109+
<version>3.0.1</version>
110+
<scope>provided</scope>
111+
</dependency>
112+
<dependency>
113+
<groupId>javax.servlet.jsp</groupId>
114+
<artifactId>jsp-api</artifactId>
115+
<version>2.2</version>
116+
</dependency>
117+
<dependency>
118+
<groupId>javax.servlet</groupId>
119+
<artifactId>jstl</artifactId>
120+
<version>1.2</version>
121+
</dependency>
122+
123+
124+
<!--mybatis-->
125+
<dependency>
126+
<groupId>org.mybatis</groupId>
127+
<artifactId>mybatis-spring</artifactId>
128+
<version>1.2.4</version>
129+
</dependency>
130+
<dependency>
131+
<groupId>org.mybatis</groupId>
132+
<artifactId>mybatis</artifactId>
133+
<version>3.3.1</version>
134+
</dependency>
135+
<dependency>
136+
<groupId>cglib</groupId>
137+
<artifactId>cglib</artifactId>
138+
<version>3.2.0</version>
139+
</dependency>
140+
<dependency>
141+
<groupId>commons-logging</groupId>
142+
<artifactId>commons-logging</artifactId>
143+
<version>1.2</version>
144+
</dependency>
145+
<dependency>
146+
<groupId>org.slf4j</groupId>
147+
<artifactId>slf4j-api</artifactId>
148+
<version>1.7.14</version>
149+
</dependency>
150+
<dependency>
151+
<groupId>log4j</groupId>
152+
<artifactId>log4j</artifactId>
153+
<version>1.2.17</version>
154+
</dependency>
155+
<dependency>
156+
<groupId>org.slf4j</groupId>
157+
<artifactId>slf4j-log4j12</artifactId>
158+
<version>1.7.14</version>
159+
</dependency>
160+
<dependency>
161+
<groupId>ognl</groupId>
162+
<artifactId>ognl</artifactId>
163+
<version>3.1.2</version>
164+
</dependency>
165+
<dependency>
166+
<groupId>org.javassist</groupId>
167+
<artifactId>javassist</artifactId>
168+
<version>3.20.0-GA</version>
169+
</dependency>
170+
<dependency>
171+
<groupId>org.apache.logging.log4j</groupId>
172+
<artifactId>log4j-core</artifactId>
173+
<version>2.3</version>
174+
</dependency>
175+
<dependency>
176+
<groupId>org.apache.commons</groupId>
177+
<artifactId>commons-pool2</artifactId>
178+
<version>2.3</version>
179+
</dependency>
180+
<dependency>
181+
<groupId>org.apache.commons</groupId>
182+
<artifactId>commons-dbcp2</artifactId>
183+
<version>2.1</version>
184+
</dependency>
185+
<!--json parser-->
186+
<dependency>
187+
<groupId>com.google.code.gson</groupId>
188+
<artifactId>gson</artifactId>
189+
<version>2.6</version>
190+
</dependency>
191+
192+
</dependencies>
193+
194+
<build>
195+
<finalName>giit</finalName>
196+
197+
<plugins>
198+
<plugin>
199+
<groupId>org.apache.maven.plugins</groupId>
200+
<artifactId>maven-compiler-plugin</artifactId>
201+
<version>3.1</version>
202+
<configuration>
203+
<source>1.8</source>
204+
<target>1.8</target>
205+
<encoding>UTF-8</encoding>
206+
</configuration>
207+
</plugin>
208+
<plugin>
209+
<groupId>org.mortbay.jetty</groupId>
210+
<artifactId>jetty-maven-plugin</artifactId>
211+
<version>8.1.8.v20121106</version>
212+
<configuration>
213+
<webAppConfig>
214+
<contextPath>/${project.build.finalName}</contextPath>
215+
</webAppConfig>
216+
</configuration>
217+
</plugin>
218+
219+
<plugin>
220+
<groupId>org.codehaus.cargo</groupId>
221+
<artifactId>cargo-maven2-plugin</artifactId>
222+
<version>1.4.18</version>
223+
<configuration>
224+
<container>
225+
<!--tomcat类型 -->
226+
<containerId>tomcat8x</containerId>
227+
<!-- 指定tomcat路径 -->
228+
<home>/home/c0de8ug/software/apache-tomcat-8.0.28</home>
229+
</container>
230+
<configuration>
231+
<type>existing</type>
232+
<!--指定tomcat路径 -->
233+
<home>/home/c0de8ug/software/apache-tomcat-8.0.28</home>
234+
<properties>
235+
<!-- 更改监听端口 -->
236+
<cargo.servlet.port>8888</cargo.servlet.port>
237+
</properties>
238+
</configuration>
239+
</configuration>
240+
<executions>
241+
<execution>
242+
<id>cargo-run</id>
243+
<phase>install</phase>
244+
<goals>
245+
<goal>run</goal>
246+
</goals>
247+
</execution>
248+
</executions>
249+
</plugin>
250+
</plugins>
251+
252+
253+
</build>
254+
255+
</project>

0 commit comments

Comments
 (0)