pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.2.RELEASE</version>
  10. <relativePath /> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.icontrols</groupId>
  13. <artifactId>oauth2</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <packaging>war</packaging>
  16. <name>oauth2</name>
  17. <description>Demo project for Spring Boot</description>
  18. <properties>
  19. <java.version>1.8</java.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-tomcat</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>javax.servlet</groupId>
  42. <artifactId>jstl</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.tomcat.embed</groupId>
  46. <artifactId>tomcat-embed-jasper</artifactId>
  47. </dependency>
  48. <!-- JWT 발급을 위한 라이브러리 -->
  49. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt -->
  50. <dependency>
  51. <groupId>io.jsonwebtoken</groupId>
  52. <artifactId>jjwt</artifactId>
  53. <version>0.9.0</version>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/org.webjars/bootstrap -->
  56. <dependency>
  57. <groupId>org.webjars</groupId>
  58. <artifactId>bootstrap</artifactId>
  59. <version>4.0.0</version>
  60. </dependency>
  61. <!-- redis -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-data-redis</artifactId>
  65. </dependency>
  66. <!-- maria db -->
  67. <dependency>
  68. <groupId>org.mariadb.jdbc</groupId>
  69. <artifactId>mariadb-java-client</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-data-jpa</artifactId>
  74. </dependency>
  75. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  76. <dependency>
  77. <groupId>commons-codec</groupId>
  78. <artifactId>commons-codec</artifactId>
  79. <version>1.10</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/org.json/json -->
  82. <dependency>
  83. <groupId>org.json</groupId>
  84. <artifactId>json</artifactId>
  85. <version>20160810</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.httpcomponents</groupId>
  89. <artifactId>httpclient</artifactId>
  90. <version>4.5.6</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>javax.xml.bind</groupId>
  94. <artifactId>jaxb-api</artifactId>
  95. <version>2.3.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.hibernate</groupId>
  99. <artifactId>hibernate-core</artifactId>
  100. <version>5.2.3.Final</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-jdbc</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.glassfish.web</groupId>
  108. <artifactId>el-impl</artifactId>
  109. <version>2.2</version>
  110. </dependency>
  111. </dependencies>
  112. <build>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-maven-plugin</artifactId>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>