説明なし

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  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>6.0.6</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. <snakeyaml.version>1.30</snakeyaml.version>
  32. <project.youtube.version>v3-rev56-1.15.0-rc</project.youtube.version>
  33. <project.http.version>1.15.0-rc</project.http.version>
  34. <project.oauth.version>1.15.0-rc</project.oauth.version>
  35. </properties>
  36. <!-- lombok -->
  37. <repositories>
  38. <repository>
  39. <id>projectlombok.org</id>
  40. <url>http://projectlombok.org/mavenrepo</url>
  41. </repository>
  42. <repository>
  43. <id>jcenter</id>
  44. <name>jcenter-bintray</name>
  45. <url>https://jcenter.bintray.com</url>
  46. </repository>
  47. </repositories>
  48. <dependencies>
  49. <dependency>
  50. <groupId>com.github.twitch4j</groupId>
  51. <artifactId>twitch4j</artifactId>
  52. <version>1.1.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>junit</groupId>
  56. <artifactId>junit</artifactId>
  57. <version>3.8.1</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <!-- MariaDB / Mysql -->
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <version>${mysql.version}</version>
  65. </dependency>
  66. <!-- 하이버네이트 -->
  67. <dependency>
  68. <groupId>org.hibernate</groupId>
  69. <artifactId>hibernate-core</artifactId>
  70. <version>${hibernate.version}</version>
  71. </dependency>
  72. <!-- 어노테이션 기반 자동 바이너리 생성 -->
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. <version>${lombok.version}</version>
  77. </dependency>
  78. <!-- HTTP 웹 브라우저 파싱 -->
  79. <dependency>
  80. <groupId>org.jsoup</groupId>
  81. <artifactId>jsoup</artifactId>
  82. <version>${jsoup.version}</version>
  83. </dependency>
  84. <!-- 파일 포맷 JSON -->
  85. <dependency>
  86. <groupId>com.fasterxml.jackson.core</groupId>
  87. <artifactId>jackson-databind</artifactId>
  88. <version>${jackson.version}</version>
  89. </dependency>
  90. <!-- 파일 포맷 XML -->
  91. <dependency>
  92. <groupId>com.fasterxml.jackson.dataformat</groupId>
  93. <artifactId>jackson-dataformat-xml</artifactId>
  94. <version>${jackson.version}</version>
  95. </dependency>
  96. <!-- 파일 포맷 JSON -->
  97. <dependency>
  98. <groupId>com.google.code.gson</groupId>
  99. <artifactId>gson</artifactId>
  100. <version>${gson.version}</version>
  101. </dependency>
  102. <!-- 파일 포맷 DOM4J -->
  103. <dependency>
  104. <groupId>org.dom4j</groupId>
  105. <artifactId>dom4j</artifactId>
  106. <version>${dom4j.version}</version>
  107. <!-- 하이버네이트 에 이전 버전이 있으므로 exclusion을 사용 -->
  108. </dependency>
  109. <!-- 파일 포맷 INI4J -->
  110. <dependency>
  111. <groupId>org.ini4j</groupId>
  112. <artifactId>ini4j</artifactId>
  113. <version>${ini4j.version}</version>
  114. </dependency>
  115. <!-- Log4J 로그 -->
  116. <dependency>
  117. <groupId>org.apache.logging.log4j</groupId>
  118. <artifactId>log4j-core</artifactId>
  119. <version>${log4j2.version}</version>
  120. </dependency>
  121. <!-- Lists를 주로 사용 -->
  122. <dependency>
  123. <groupId>com.google.guava</groupId>
  124. <artifactId>guava</artifactId>
  125. <version>${guava.version}</version>
  126. </dependency>
  127. <!-- 스케줄링 -->
  128. <dependency>
  129. <groupId>org.quartz-scheduler</groupId>
  130. <artifactId>quartz</artifactId>
  131. <version>${quartz.version}</version>
  132. </dependency>
  133. <!-- SERVER SIDE -->
  134. <!-- HTTP 서버 -->
  135. <dependency>
  136. <groupId>org.eclipse.jetty</groupId>
  137. <artifactId>jetty-server</artifactId>
  138. <version>${jetty.version}</version>
  139. </dependency>
  140. <!-- HTTP 웹 서버 -->
  141. <dependency>
  142. <groupId>org.eclipse.jetty</groupId>
  143. <artifactId>jetty-webapp</artifactId>
  144. <version>${jetty.version}</version>
  145. </dependency>
  146. <!-- HTTP 웹소켓 -->
  147. <dependency>
  148. <groupId>org.eclipse.jetty.websocket</groupId>
  149. <artifactId>websocket-server</artifactId>
  150. <version>${jetty.version}</version>
  151. </dependency>
  152. <!-- [ERROR] No JSP support. Check that JSP jars are in lib/jsp and that the JSP option has been specified to start.jar -->
  153. <dependency>
  154. <groupId>org.eclipse.jetty</groupId>
  155. <artifactId>jetty-jsp</artifactId>
  156. <version>9.2.24.v20180105</version>
  157. </dependency>
  158. <!-- REST 웹서비스 -->
  159. <dependency>
  160. <groupId>com.sun.jersey</groupId>
  161. <artifactId>jersey-server</artifactId>
  162. <version>${jersey.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.sun.jersey</groupId>
  166. <artifactId>jersey-bundle</artifactId>
  167. <version>${jersey.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.sun.jersey</groupId>
  171. <artifactId>jersey-json</artifactId>
  172. <version>${jersey.version}</version>
  173. </dependency>
  174. <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
  175. <dependency>
  176. <groupId>org.yaml</groupId>
  177. <artifactId>snakeyaml</artifactId>
  178. <version>${snakeyaml.version}</version>
  179. </dependency>
  180. <!-- CLIENT SIDE -->
  181. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  182. <dependency>
  183. <groupId>org.apache.commons</groupId>
  184. <artifactId>commons-lang3</artifactId>
  185. <version>3.9</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.scala-lang</groupId>
  189. <artifactId>scala-library</artifactId>
  190. <!-- <version>2.12.7</version> -->
  191. <version>2.11.8</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.ibm.icu</groupId>
  195. <artifactId>icu4j</artifactId>
  196. <version>63.1</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.scala-lang</groupId>
  200. <artifactId>scala-library</artifactId>
  201. <!-- <version>2.12.7</version> -->
  202. <version>2.11.8</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.bitbucket.eunjeon</groupId>
  206. <artifactId>seunjeon_2.11</artifactId>
  207. <version>1.2.0</version>
  208. </dependency>
  209. <!-- <dependency>
  210. <groupId>com.jsuereth</groupId>
  211. <artifactId>sbt-pgp</artifactId>
  212. <version>1.1.0</version>
  213. </dependency>
  214. -->
  215. <!-- https://mvnrepository.com/artifact/net.dv8tion/JDA -->
  216. <dependency>
  217. <groupId>net.dv8tion</groupId>
  218. <artifactId>JDA</artifactId>
  219. <version>4.2.0_181</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.sedmelluq</groupId>
  223. <artifactId>lavaplayer</artifactId>
  224. <version>1.3.53</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.javacord</groupId>
  228. <artifactId>javacord</artifactId>
  229. <version>3.3.2</version>
  230. <type>pom</type>
  231. </dependency>
  232. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  233. <dependency>
  234. <groupId>org.apache.httpcomponents</groupId>
  235. <artifactId>httpclient</artifactId>
  236. <version>4.5.10</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>com.sparkjava</groupId>
  240. <artifactId>spark-core</artifactId>
  241. <version>2.9.0</version>
  242. </dependency>
  243. <!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
  244. <dependency>
  245. <groupId>org.freemarker</groupId>
  246. <artifactId>freemarker</artifactId>
  247. <version>2.3.29</version>
  248. </dependency>
  249. <!-- https://mvnrepository.com/artifact/org.twitter4j/twitter4j-core -->
  250. <dependency>
  251. <groupId>org.twitter4j</groupId>
  252. <artifactId>twitter4j-core</artifactId>
  253. <version>4.0.7</version>
  254. </dependency>
  255. <!-- https://mvnrepository.com/artifact/org.twitter4j/twitter4j-stream -->
  256. <dependency>
  257. <groupId>org.twitter4j</groupId>
  258. <artifactId>twitter4j-stream</artifactId>
  259. <version>4.0.7</version>
  260. </dependency>
  261. <!-- https://mvnrepository.com/artifact/com.rabbitmq/amqp-client -->
  262. <dependency>
  263. <groupId>com.rabbitmq</groupId>
  264. <artifactId>amqp-client</artifactId>
  265. <version>5.7.3</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.elasticsearch</groupId>
  269. <artifactId>elasticsearch</artifactId>
  270. <version>1.7.6</version>
  271. </dependency>
  272. <!-- https://mvnrepository.com/artifact/javazoom/jlayer -->
  273. <dependency>
  274. <groupId>javazoom</groupId>
  275. <artifactId>jlayer</artifactId>
  276. <version>1.0.1</version>
  277. </dependency>
  278. <!-- spark section -->
  279. <dependency>
  280. <groupId>org.apache.spark</groupId>
  281. <artifactId>spark-core_2.12</artifactId>
  282. <version>2.4.0</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.apache.spark</groupId>
  286. <artifactId>spark-mllib_2.12</artifactId>
  287. <version>2.4.0</version>
  288. </dependency>
  289. <!-- Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10582 -->
  290. <dependency>
  291. <groupId>com.thoughtworks.paranamer</groupId>
  292. <artifactId>paranamer</artifactId>
  293. <version>2.8</version>
  294. </dependency>
  295. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-all -->
  296. <dependency>
  297. <groupId>org.apache.activemq</groupId>
  298. <artifactId>activemq-all</artifactId>
  299. <version>5.11.0</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>org.java-websocket</groupId>
  303. <artifactId>Java-WebSocket</artifactId>
  304. <version>1.5.1</version>
  305. </dependency>
  306. <!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
  307. <dependency>
  308. <groupId>net.sourceforge.tess4j</groupId>
  309. <artifactId>tess4j</artifactId>
  310. <version>4.5.3</version>
  311. </dependency>
  312. <!-- https://mvnrepository.com/artifact/org.deeplearning4j/deeplearning4j-core -->
  313. <dependency>
  314. <groupId>org.deeplearning4j</groupId>
  315. <artifactId>deeplearning4j-core</artifactId>
  316. <version>1.0.0-beta7</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>org.nd4j</groupId>
  320. <artifactId>nd4j-native-platform</artifactId>
  321. <version>1.0.0-beta7</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.apache.cassandra</groupId>
  325. <artifactId>cassandra-all</artifactId>
  326. <version>1.1.4</version>
  327. <exclusions>
  328. <exclusion>
  329. <groupId>org.slf4j</groupId>
  330. <artifactId>slf4j-log4j12</artifactId>
  331. </exclusion>
  332. <exclusion>
  333. <groupId>log4j</groupId>
  334. <artifactId>log4j</artifactId>
  335. </exclusion>
  336. </exclusions>
  337. </dependency>
  338. <!-- YouTube Data V3 support -->
  339. <dependency>
  340. <groupId>com.google.apis</groupId>
  341. <artifactId>google-api-services-youtube</artifactId>
  342. <version>${project.youtube.version}</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>com.google.http-client</groupId>
  346. <artifactId>google-http-client-jackson2</artifactId>
  347. <version>${project.http.version}</version>
  348. </dependency>
  349. <dependency>
  350. <groupId>com.google.oauth-client</groupId>
  351. <artifactId>google-oauth-client-jetty</artifactId>
  352. <version>${project.oauth.version}</version>
  353. </dependency>
  354. <dependency>
  355. <groupId>com.google.collections</groupId>
  356. <artifactId>google-collections</artifactId>
  357. <version>1.0</version>
  358. </dependency>
  359. </dependencies>
  360. <build>
  361. <plugins>
  362. <plugin>
  363. <artifactId>maven-compiler-plugin</artifactId>
  364. <version>3.5.1</version>
  365. <configuration>
  366. <source>1.8</source>
  367. <target>1.8</target>
  368. </configuration>
  369. </plugin>
  370. </plugins>
  371. </build>
  372. </project>