No Description

pom.xml 9.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  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>kr.co.swh</groupId>
  5. <artifactId>lecture-opensource</artifactId>
  6. <version>1.0</version>
  7. <packaging>jar</packaging>
  8. <name>opensource</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <!-- 1일차 -->
  13. <junit.version>3.8.1</junit.version>
  14. <mockito.version>1.10.19</mockito.version>
  15. <!-- 2일차 -->
  16. <mysql.version>5.1.36</mysql.version>
  17. <hibernate.version>5.2.12.Final</hibernate.version>
  18. <!-- 3일차 -->
  19. <lombok.version>1.16.20</lombok.version>
  20. <jsoup.version>1.11.2</jsoup.version>
  21. <jackson.version>2.9.4</jackson.version>
  22. <gson.version>2.8.2</gson.version>
  23. <dom4j.version>2.1.0</dom4j.version>
  24. <ini4j.version>0.5.4</ini4j.version>
  25. <!-- 4일차 -->
  26. <log4j2.version>2.10.0</log4j2.version>
  27. <guava.version>23.6-jre</guava.version>
  28. <quartz.version>2.2.1</quartz.version>
  29. <jetty.version>9.4.8.v20171121</jetty.version>
  30. <jersey.version>1.19.4</jersey.version>
  31. </properties>
  32. <!-- lombok -->
  33. <repositories>
  34. <repository>
  35. <id>projectlombok.org</id>
  36. <url>http://projectlombok.org/mavenrepo</url>
  37. </repository>
  38. <repository>
  39. <id>jcenter</id>
  40. <name>jcenter-bintray</name>
  41. <url>https://jcenter.bintray.com</url>
  42. </repository>
  43. </repositories>
  44. <dependencies>
  45. <dependency>
  46. <groupId>com.github.twitch4j</groupId>
  47. <artifactId>twitch4j</artifactId>
  48. <version>1.1.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>junit</groupId>
  52. <artifactId>junit</artifactId>
  53. <version>3.8.1</version>
  54. <scope>test</scope>
  55. </dependency>
  56. <!-- MariaDB / Mysql -->
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. <version>${mysql.version}</version>
  61. </dependency>
  62. <!-- 하이버네이트 -->
  63. <dependency>
  64. <groupId>org.hibernate</groupId>
  65. <artifactId>hibernate-core</artifactId>
  66. <version>${hibernate.version}</version>
  67. </dependency>
  68. <!-- 어노테이션 기반 자동 바이너리 생성 -->
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. <version>${lombok.version}</version>
  73. </dependency>
  74. <!-- HTTP 웹 브라우저 파싱 -->
  75. <dependency>
  76. <groupId>org.jsoup</groupId>
  77. <artifactId>jsoup</artifactId>
  78. <version>${jsoup.version}</version>
  79. </dependency>
  80. <!-- 파일 포맷 JSON -->
  81. <dependency>
  82. <groupId>com.fasterxml.jackson.core</groupId>
  83. <artifactId>jackson-databind</artifactId>
  84. <version>${jackson.version}</version>
  85. </dependency>
  86. <!-- 파일 포맷 XML -->
  87. <dependency>
  88. <groupId>com.fasterxml.jackson.dataformat</groupId>
  89. <artifactId>jackson-dataformat-xml</artifactId>
  90. <version>${jackson.version}</version>
  91. </dependency>
  92. <!-- 파일 포맷 JSON -->
  93. <dependency>
  94. <groupId>com.google.code.gson</groupId>
  95. <artifactId>gson</artifactId>
  96. <version>${gson.version}</version>
  97. </dependency>
  98. <!-- 파일 포맷 DOM4J -->
  99. <dependency>
  100. <groupId>org.dom4j</groupId>
  101. <artifactId>dom4j</artifactId>
  102. <version>${dom4j.version}</version>
  103. <!-- 하이버네이트 에 이전 버전이 있으므로 exclusion을 사용 -->
  104. </dependency>
  105. <!-- 파일 포맷 INI4J -->
  106. <dependency>
  107. <groupId>org.ini4j</groupId>
  108. <artifactId>ini4j</artifactId>
  109. <version>${ini4j.version}</version>
  110. </dependency>
  111. <!-- Log4J 로그 -->
  112. <dependency>
  113. <groupId>org.apache.logging.log4j</groupId>
  114. <artifactId>log4j-core</artifactId>
  115. <version>${log4j2.version}</version>
  116. </dependency>
  117. <!-- Lists를 주로 사용 -->
  118. <dependency>
  119. <groupId>com.google.guava</groupId>
  120. <artifactId>guava</artifactId>
  121. <version>${guava.version}</version>
  122. </dependency>
  123. <!-- 스케줄링 -->
  124. <dependency>
  125. <groupId>org.quartz-scheduler</groupId>
  126. <artifactId>quartz</artifactId>
  127. <version>${quartz.version}</version>
  128. </dependency>
  129. <!-- SERVER SIDE -->
  130. <!-- HTTP 서버 -->
  131. <dependency>
  132. <groupId>org.eclipse.jetty</groupId>
  133. <artifactId>jetty-server</artifactId>
  134. <version>${jetty.version}</version>
  135. </dependency>
  136. <!-- HTTP 웹 서버 -->
  137. <dependency>
  138. <groupId>org.eclipse.jetty</groupId>
  139. <artifactId>jetty-webapp</artifactId>
  140. <version>${jetty.version}</version>
  141. </dependency>
  142. <!-- HTTP 웹소켓 -->
  143. <dependency>
  144. <groupId>org.eclipse.jetty.websocket</groupId>
  145. <artifactId>websocket-server</artifactId>
  146. <version>${jetty.version}</version>
  147. </dependency>
  148. <!-- [ERROR] No JSP support. Check that JSP jars are in lib/jsp and that the JSP option has been specified to start.jar -->
  149. <dependency>
  150. <groupId>org.eclipse.jetty</groupId>
  151. <artifactId>jetty-jsp</artifactId>
  152. <version>9.2.24.v20180105</version>
  153. </dependency>
  154. <!-- REST 웹서비스 -->
  155. <dependency>
  156. <groupId>com.sun.jersey</groupId>
  157. <artifactId>jersey-server</artifactId>
  158. <version>${jersey.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.sun.jersey</groupId>
  162. <artifactId>jersey-bundle</artifactId>
  163. <version>${jersey.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.sun.jersey</groupId>
  167. <artifactId>jersey-json</artifactId>
  168. <version>${jersey.version}</version>
  169. </dependency>
  170. <!-- CLIENT SIDE -->
  171. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  172. <dependency>
  173. <groupId>org.apache.commons</groupId>
  174. <artifactId>commons-lang3</artifactId>
  175. <version>3.9</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.scala-lang</groupId>
  179. <artifactId>scala-library</artifactId>
  180. <!-- <version>2.12.7</version> -->
  181. <version>2.11.8</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.ibm.icu</groupId>
  185. <artifactId>icu4j</artifactId>
  186. <version>63.1</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.scala-lang</groupId>
  190. <artifactId>scala-library</artifactId>
  191. <!-- <version>2.12.7</version> -->
  192. <version>2.11.8</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.bitbucket.eunjeon</groupId>
  196. <artifactId>seunjeon_2.11</artifactId>
  197. <version>1.2.0</version>
  198. </dependency>
  199. <!-- <dependency>
  200. <groupId>com.jsuereth</groupId>
  201. <artifactId>sbt-pgp</artifactId>
  202. <version>1.1.0</version>
  203. </dependency>
  204. -->
  205. <!-- https://mvnrepository.com/artifact/net.dv8tion/JDA -->
  206. <dependency>
  207. <groupId>net.dv8tion</groupId>
  208. <artifactId>JDA</artifactId>
  209. <version>4.2.0_181</version>
  210. </dependency>
  211. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  212. <dependency>
  213. <groupId>org.apache.httpcomponents</groupId>
  214. <artifactId>httpclient</artifactId>
  215. <version>4.5.10</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>com.sparkjava</groupId>
  219. <artifactId>spark-core</artifactId>
  220. <version>2.9.0</version>
  221. </dependency>
  222. <!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
  223. <dependency>
  224. <groupId>org.freemarker</groupId>
  225. <artifactId>freemarker</artifactId>
  226. <version>2.3.29</version>
  227. </dependency>
  228. <!-- https://mvnrepository.com/artifact/org.twitter4j/twitter4j-core -->
  229. <dependency>
  230. <groupId>org.twitter4j</groupId>
  231. <artifactId>twitter4j-core</artifactId>
  232. <version>4.0.7</version>
  233. </dependency>
  234. <!-- https://mvnrepository.com/artifact/org.twitter4j/twitter4j-stream -->
  235. <dependency>
  236. <groupId>org.twitter4j</groupId>
  237. <artifactId>twitter4j-stream</artifactId>
  238. <version>4.0.7</version>
  239. </dependency>
  240. <!-- https://mvnrepository.com/artifact/com.rabbitmq/amqp-client -->
  241. <dependency>
  242. <groupId>com.rabbitmq</groupId>
  243. <artifactId>amqp-client</artifactId>
  244. <version>5.7.3</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.elasticsearch</groupId>
  248. <artifactId>elasticsearch</artifactId>
  249. <version>1.7.6</version>
  250. </dependency>
  251. <!-- spark section -->
  252. <dependency>
  253. <groupId>org.apache.spark</groupId>
  254. <artifactId>spark-core_2.12</artifactId>
  255. <version>2.4.0</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.spark</groupId>
  259. <artifactId>spark-mllib_2.12</artifactId>
  260. <version>2.4.0</version>
  261. </dependency>
  262. <!-- Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10582 -->
  263. <dependency>
  264. <groupId>com.thoughtworks.paranamer</groupId>
  265. <artifactId>paranamer</artifactId>
  266. <version>2.8</version>
  267. </dependency>
  268. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-all -->
  269. <dependency>
  270. <groupId>org.apache.activemq</groupId>
  271. <artifactId>activemq-all</artifactId>
  272. <version>5.11.0</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.java-websocket</groupId>
  276. <artifactId>Java-WebSocket</artifactId>
  277. <version>1.5.1</version>
  278. </dependency>
  279. <!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
  280. <dependency>
  281. <groupId>net.sourceforge.tess4j</groupId>
  282. <artifactId>tess4j</artifactId>
  283. <version>4.5.3</version>
  284. </dependency>
  285. </dependencies>
  286. <build>
  287. <plugins>
  288. <plugin>
  289. <artifactId>maven-compiler-plugin</artifactId>
  290. <version>3.5.1</version>
  291. <configuration>
  292. <source>1.8</source>
  293. <target>1.8</target>
  294. </configuration>
  295. </plugin>
  296. </plugins>
  297. </build>
  298. </project>