Brak opisu

pom.xml 9.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <version>3.8.1</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mockito</groupId>
  53. <artifactId>mockito-all</artifactId>
  54. <version>1.10.19</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <!-- MariaDB / Mysql -->
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <version>${mysql.version}</version>
  62. </dependency>
  63. <!-- 하이버네이트 -->
  64. <dependency>
  65. <groupId>org.hibernate</groupId>
  66. <artifactId>hibernate-core</artifactId>
  67. <version>${hibernate.version}</version>
  68. </dependency>
  69. <!-- 어노테이션 기반 자동 바이너리 생성 -->
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <version>${lombok.version}</version>
  74. </dependency>
  75. <!-- HTTP 웹 브라우저 파싱 -->
  76. <dependency>
  77. <groupId>org.jsoup</groupId>
  78. <artifactId>jsoup</artifactId>
  79. <version>${jsoup.version}</version>
  80. </dependency>
  81. <!-- 파일 포맷 JSON -->
  82. <dependency>
  83. <groupId>com.fasterxml.jackson.core</groupId>
  84. <artifactId>jackson-databind</artifactId>
  85. <version>${jackson.version}</version>
  86. </dependency>
  87. <!-- 파일 포맷 XML -->
  88. <dependency>
  89. <groupId>com.fasterxml.jackson.dataformat</groupId>
  90. <artifactId>jackson-dataformat-xml</artifactId>
  91. <version>${jackson.version}</version>
  92. </dependency>
  93. <!-- 파일 포맷 JSON -->
  94. <dependency>
  95. <groupId>com.google.code.gson</groupId>
  96. <artifactId>gson</artifactId>
  97. <version>${gson.version}</version>
  98. </dependency>
  99. <!-- 파일 포맷 DOM4J -->
  100. <dependency>
  101. <groupId>org.dom4j</groupId>
  102. <artifactId>dom4j</artifactId>
  103. <version>${dom4j.version}</version>
  104. <!-- 하이버네이트 에 이전 버전이 있으므로 exclusion을 사용 -->
  105. </dependency>
  106. <!-- 파일 포맷 INI4J -->
  107. <dependency>
  108. <groupId>org.ini4j</groupId>
  109. <artifactId>ini4j</artifactId>
  110. <version>${ini4j.version}</version>
  111. </dependency>
  112. <!-- Log4J 로그 -->
  113. <dependency>
  114. <groupId>org.apache.logging.log4j</groupId>
  115. <artifactId>log4j-core</artifactId>
  116. <version>${log4j2.version}</version>
  117. </dependency>
  118. <!-- Lists를 주로 사용 -->
  119. <dependency>
  120. <groupId>com.google.guava</groupId>
  121. <artifactId>guava</artifactId>
  122. <version>${guava.version}</version>
  123. </dependency>
  124. <!-- 스케줄링 -->
  125. <dependency>
  126. <groupId>org.quartz-scheduler</groupId>
  127. <artifactId>quartz</artifactId>
  128. <version>${quartz.version}</version>
  129. </dependency>
  130. <!-- SERVER SIDE -->
  131. <!-- HTTP 서버 -->
  132. <dependency>
  133. <groupId>org.eclipse.jetty</groupId>
  134. <artifactId>jetty-server</artifactId>
  135. <version>${jetty.version}</version>
  136. </dependency>
  137. <!-- HTTP 웹 서버 -->
  138. <dependency>
  139. <groupId>org.eclipse.jetty</groupId>
  140. <artifactId>jetty-webapp</artifactId>
  141. <version>${jetty.version}</version>
  142. </dependency>
  143. <!-- HTTP 웹소켓 -->
  144. <dependency>
  145. <groupId>org.eclipse.jetty.websocket</groupId>
  146. <artifactId>websocket-server</artifactId>
  147. <version>${jetty.version}</version>
  148. </dependency>
  149. <!-- [ERROR] No JSP support. Check that JSP jars are in lib/jsp and that the JSP option has been specified to start.jar -->
  150. <dependency>
  151. <groupId>org.eclipse.jetty</groupId>
  152. <artifactId>jetty-jsp</artifactId>
  153. <version>9.2.24.v20180105</version>
  154. </dependency>
  155. <!-- REST 웹서비스 -->
  156. <dependency>
  157. <groupId>com.sun.jersey</groupId>
  158. <artifactId>jersey-server</artifactId>
  159. <version>${jersey.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.sun.jersey</groupId>
  163. <artifactId>jersey-bundle</artifactId>
  164. <version>${jersey.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.sun.jersey</groupId>
  168. <artifactId>jersey-json</artifactId>
  169. <version>${jersey.version}</version>
  170. </dependency>
  171. <!-- CLIENT SIDE -->
  172. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  173. <dependency>
  174. <groupId>org.apache.commons</groupId>
  175. <artifactId>commons-lang3</artifactId>
  176. <version>3.9</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.scala-lang</groupId>
  180. <artifactId>scala-library</artifactId>
  181. <!-- <version>2.12.7</version> -->
  182. <version>2.11.8</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.ibm.icu</groupId>
  186. <artifactId>icu4j</artifactId>
  187. <version>63.1</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.scala-lang</groupId>
  191. <artifactId>scala-library</artifactId>
  192. <!-- <version>2.12.7</version> -->
  193. <version>2.11.8</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.bitbucket.eunjeon</groupId>
  197. <artifactId>seunjeon_2.11</artifactId>
  198. <version>1.2.0</version>
  199. </dependency>
  200. <!-- <dependency>
  201. <groupId>com.jsuereth</groupId>
  202. <artifactId>sbt-pgp</artifactId>
  203. <version>1.1.0</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>net.dv8tion</groupId>
  207. <artifactId>JDA</artifactId>
  208. <version>LATEST</version>
  209. </dependency>
  210. -->
  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. </dependencies>
  275. <build>
  276. <plugins>
  277. <plugin>
  278. <artifactId>maven-compiler-plugin</artifactId>
  279. <version>3.5.1</version>
  280. <configuration>
  281. <source>1.8</source>
  282. <target>1.8</target>
  283. </configuration>
  284. </plugin>
  285. </plugins>
  286. </build>
  287. </project>