pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.5.RELEASE</version>
  9. <relativePath /> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.comtika</groupId>
  12. <artifactId>safe</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>safe</name>
  15. <description>康体佳-安全用电</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-jpa</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>org.apache.tomcat</groupId>
  30. <artifactId>tomcat-jdbc</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.auth0</groupId>
  36. <artifactId>java-jwt</artifactId>
  37. <version>3.7.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.bouncycastle</groupId>
  41. <artifactId>bcprov-jdk16</artifactId>
  42. <version>1.45</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-aop</artifactId>
  47. </dependency>
  48. <!--MySQL JDBC驱动 -->
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. <scope>runtime</scope>
  53. </dependency>
  54. <!--lombok -->
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. <version>1.16.10</version>
  59. </dependency>
  60. <!--springboot 整合 beetlsql 并且与sharding-jdbc一起使用 -->
  61. <dependency>
  62. <groupId>com.ibeetl</groupId>
  63. <artifactId>beetl-framework-starter</artifactId>
  64. <version>1.2.31.RELEASE</version>
  65. </dependency>
  66. <!-- fastjson 作为项目序列化工具 -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>fastjson</artifactId>
  70. <version>1.2.47</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.commons</groupId>
  74. <artifactId>commons-pool2</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>jexcelapi</groupId>
  78. <artifactId>jxl</artifactId>
  79. <version>2.6</version>
  80. </dependency>
  81. <!-- swagger2 -->
  82. <dependency>
  83. <groupId>io.springfox</groupId>
  84. <artifactId>springfox-swagger2</artifactId>
  85. <version>2.8.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>io.springfox</groupId>
  89. <artifactId>springfox-swagger-ui</artifactId>
  90. <version>2.8.0</version>
  91. </dependency>
  92. <!-- redis https://blog.csdn.net/jikefzz1095377498/article/details/81231720
  93. redis jar的比较 -->
  94. <!--<dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-data-redis</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.commons</groupId>
  100. <artifactId>commons-pool2</artifactId>
  101. </dependency>-->
  102. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  103. <dependency>
  104. <groupId>commons-lang</groupId>
  105. <artifactId>commons-lang</artifactId>
  106. <version>2.6</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.netty</groupId>
  110. <artifactId>netty-all</artifactId>
  111. <version>4.1.30.Final</version>
  112. </dependency>
  113. <!--lucene -->
  114. <dependency>
  115. <groupId>org.apache.lucene</groupId>
  116. <artifactId>lucene-queryparser</artifactId>
  117. <version>7.1.0</version>
  118. </dependency>
  119. <!--smartcn 中文分词器 SmartChineseAnalyzer smartcn分词器 需要lucene依赖 且和lucene版本同步 -->
  120. <dependency>
  121. <groupId>org.apache.lucene</groupId>
  122. <artifactId>lucene-analyzers-smartcn</artifactId>
  123. <version>7.1.0</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>commons-httpclient</groupId>
  127. <artifactId>commons-httpclient</artifactId>
  128. <version>3.0-rc4</version>
  129. </dependency>
  130. <!--<dependency>
  131. <groupId>commons-logging</groupId>
  132. <artifactId>commons-logging</artifactId>
  133. <version>1.0.4</version>
  134. </dependency>-->
  135. <!--<dependency>
  136. <groupId>dom4j</groupId>
  137. <artifactId>dom4j</artifactId>
  138. </dependency>-->
  139. <!--java execl jxl 博客:https://www.cnblogs.com/hanfeihanfei/p/7079210.html-->
  140. <dependency>
  141. <groupId>jexcelapi</groupId>
  142. <artifactId>jxl</artifactId>
  143. <version>2.6</version>
  144. </dependency>
  145. </dependencies>
  146. <build>
  147. <finalName>comtika-safe</finalName>
  148. <plugins>
  149. <plugin>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-maven-plugin</artifactId>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. </project>