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+ <version >1.0-SNAPSHOT</version >
5+ <name >kik-botmill</name >
6+ <build >
7+ <sourceDirectory >src</sourceDirectory >
8+ <plugins >
9+ <plugin >
10+ <artifactId >maven-compiler-plugin</artifactId >
11+ <version >3.3</version >
12+ <configuration >
13+ <source >1.8</source >
14+ <target >1.8</target >
15+ </configuration >
16+ </plugin >
17+ <plugin >
18+ <groupId >org.apache.maven.plugins</groupId >
19+ <artifactId >maven-shade-plugin</artifactId >
20+ <executions >
21+ <execution >
22+ <phase >package</phase >
23+ <goals >
24+ <goal >shade</goal >
25+ </goals >
26+ </execution >
27+ </executions >
28+ </plugin >
29+ </plugins >
30+ </build >
31+ <artifactId >kik-botmill</artifactId >
32+ <groupId >co.aurasphere.botmill</groupId >
33+ <dependencies >
34+ <dependency >
35+ <groupId >com.google.guava</groupId >
36+ <artifactId >guava</artifactId >
37+ <version >20.0</version >
38+ </dependency >
39+ <dependency >
40+ <groupId >com.google.code.gson</groupId >
41+ <artifactId >gson</artifactId >
42+ <version >2.8.0</version >
43+ </dependency >
44+ <dependency >
45+ <groupId >org.apache.httpcomponents</groupId >
46+ <artifactId >httpclient</artifactId >
47+ <version >4.5.2</version >
48+ </dependency >
49+ <dependency >
50+ <groupId >org.slf4j</groupId >
51+ <artifactId >slf4j-api</artifactId >
52+ <version >1.7.21</version >
53+ </dependency >
54+ <dependency >
55+ <groupId >ch.qos.logback</groupId >
56+ <artifactId >logback-classic</artifactId >
57+ <version >1.0.13</version >
58+ </dependency >
59+ <dependency >
60+ <groupId >org.hibernate</groupId >
61+ <artifactId >hibernate-validator</artifactId >
62+ <version >5.2.4.Final</version >
63+ </dependency >
64+ <dependency >
65+ <groupId >org.glassfish.web</groupId >
66+ <artifactId >javax.el</artifactId >
67+ <version >2.2.4</version >
68+ </dependency >
69+ <dependency >
70+ <groupId >com.sparkjava</groupId >
71+ <artifactId >spark-core</artifactId >
72+ <version >2.5</version >
73+ </dependency >
74+
75+ <dependency >
76+ <groupId >org.springframework</groupId >
77+ <artifactId >spring-core</artifactId >
78+ <version >4.1.6.RELEASE</version >
79+ </dependency >
80+ <dependency >
81+ <groupId >org.springframework</groupId >
82+ <artifactId >spring-context</artifactId >
83+ <version >4.1.6.RELEASE</version >
84+ </dependency >
85+ <dependency >
86+ <groupId >org.springframework</groupId >
87+ <artifactId >spring-beans</artifactId >
88+ <version >4.1.6.RELEASE</version >
89+ </dependency >
90+ <dependency >
91+ <groupId >org.springframework</groupId >
92+ <artifactId >spring-jdbc</artifactId >
93+ <version >4.1.6.RELEASE</version >
94+ </dependency >
95+ <dependency >
96+ <groupId >junit</groupId >
97+ <artifactId >junit</artifactId >
98+ <version >3.8.1</version >
99+ <scope >test</scope >
100+ </dependency >
101+ <dependency >
102+ <groupId >org.apache.httpcomponents</groupId >
103+ <artifactId >httpmime</artifactId >
104+ <version >4.5.2</version >
105+ </dependency >
106+ <dependency >
107+ <groupId >org.alicebot.ab</groupId >
108+ <artifactId >ab</artifactId >
109+ <version >4.0.4-SNAPSHOT</version >
110+ </dependency >
111+ <dependency >
112+ <groupId >junit</groupId >
113+ <artifactId >junit</artifactId >
114+ <version >3.8.1</version >
115+ <scope >test</scope >
116+ </dependency >
117+ </dependencies >
118+ </project >
0 commit comments