pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. <parent>
  6. <groupId>jp.yamoto</groupId>
  7. <artifactId>farm</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>farm-common</artifactId>
  12. <description>
  13. 汎用ツールモジュール
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot Web -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <!-- SpringBoot aop -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-aop</artifactId>
  25. </dependency>
  26. <!-- Mail -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-mail</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mybatis.spring.boot</groupId>
  33. <artifactId>mybatis-spring-boot-starter</artifactId>
  34. </dependency>
  35. <!-- kaptcha -->
  36. <dependency>
  37. <groupId>pro.fessional</groupId>
  38. <artifactId>kaptcha</artifactId>
  39. <exclusions>
  40. <exclusion>
  41. <artifactId>servlet-api</artifactId>
  42. <groupId>javax.servlet</groupId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <!-- システム情報の取得 -->
  47. <dependency>
  48. <groupId>com.github.oshi</groupId>
  49. <artifactId>oshi-core</artifactId>
  50. </dependency>
  51. <!-- Spring framework -->
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-context-support</artifactId>
  55. </dependency>
  56. <!-- SpringWeb -->
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-web</artifactId>
  60. </dependency>
  61. <!-- spring security -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-security</artifactId>
  65. </dependency>
  66. <!-- pagehelper -->
  67. <dependency>
  68. <groupId>com.github.pagehelper</groupId>
  69. <artifactId>pagehelper-spring-boot-starter</artifactId>
  70. </dependency>
  71. <!-- spring validation -->
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-validation</artifactId>
  75. </dependency>
  76. <!--commons tools -->
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-lang3</artifactId>
  80. </dependency>
  81. <!-- JSON -->
  82. <dependency>
  83. <groupId>com.fasterxml.jackson.core</groupId>
  84. <artifactId>jackson-databind</artifactId>
  85. </dependency>
  86. <!-- alibaba json -->
  87. <dependency>
  88. <groupId>com.alibaba.fastjson2</groupId>
  89. <artifactId>fastjson2</artifactId>
  90. </dependency>
  91. <!-- io tools -->
  92. <dependency>
  93. <groupId>commons-io</groupId>
  94. <artifactId>commons-io</artifactId>
  95. </dependency>
  96. <!-- excel poi -->
  97. <dependency>
  98. <groupId>org.apache.poi</groupId>
  99. <artifactId>poi-ooxml</artifactId>
  100. </dependency>
  101. <!-- yml -->
  102. <dependency>
  103. <groupId>org.yaml</groupId>
  104. <artifactId>snakeyaml</artifactId>
  105. </dependency>
  106. <!-- Token -->
  107. <dependency>
  108. <groupId>io.jsonwebtoken</groupId>
  109. <artifactId>jjwt</artifactId>
  110. </dependency>
  111. <!-- Jaxb -->
  112. <dependency>
  113. <groupId>javax.xml.bind</groupId>
  114. <artifactId>jaxb-api</artifactId>
  115. </dependency>
  116. <!-- redis -->
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-data-redis</artifactId>
  120. </dependency>
  121. <!-- pool -->
  122. <dependency>
  123. <groupId>org.apache.commons</groupId>
  124. <artifactId>commons-pool2</artifactId>
  125. </dependency>
  126. <!-- クライアントオペレーティングシステム、ブラウザなどの解析 -->
  127. <dependency>
  128. <groupId>eu.bitwalker</groupId>
  129. <artifactId>UserAgentUtils</artifactId>
  130. </dependency>
  131. <!-- servlet -->
  132. <dependency>
  133. <groupId>jakarta.servlet</groupId>
  134. <artifactId>jakarta.servlet-api</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.projectlombok</groupId>
  138. <artifactId>lombok</artifactId>
  139. <scope>provided</scope>
  140. </dependency>
  141. </dependencies>
  142. </project>