pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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 http://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.1.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.kingkong</groupId>
  12. <artifactId>bljs</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <name>bljs</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-cache</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-redis</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-security</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.security</groupId>
  43. <artifactId>spring-security-config</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mybatis.spring.boot</groupId>
  51. <artifactId>mybatis-spring-boot-starter</artifactId>
  52. <version>2.0.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.session</groupId>
  56. <artifactId>spring-session-data-redis</artifactId>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/org.springframework.security.oauth/spring-security-oauth2 -->
  59. <dependency>
  60. <groupId>org.springframework.security.oauth</groupId>
  61. <artifactId>spring-security-oauth2</artifactId>
  62. <version>2.1.2.RELEASE</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-test</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.reflections</groupId>
  71. <artifactId>reflections</artifactId>
  72. <version>0.9.11</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-aop</artifactId>
  77. </dependency>
  78. <!--<dependency>-->
  79. <!--<groupId>org.springframework.security</groupId>-->
  80. <!--<artifactId>spring-security-test</artifactId>-->
  81. <!--<scope>test</scope>-->
  82. <!--</dependency>-->
  83. <dependency>
  84. <groupId>com.oracle</groupId>
  85. <artifactId>ojdbc6</artifactId>
  86. <version>11.2.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>fastjson</artifactId>
  91. <version>1.2.47</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>druid</artifactId>
  96. <version>1.0.28</version>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  99. <dependency>
  100. <groupId>mysql</groupId>
  101. <artifactId>mysql-connector-java</artifactId>
  102. <version>3.1.13</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-devtools</artifactId>
  107. <optional>true</optional>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.yeauty</groupId>
  111. <artifactId>netty-websocket-spring-boot-starter</artifactId>
  112. <version>0.8.0</version>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.mybatis.generator</groupId>
  119. <artifactId>mybatis-generator-maven-plugin</artifactId>
  120. <version>1.3.7</version>
  121. <configuration>
  122. <verbose>true</verbose>
  123. <overwrite>true</overwrite>
  124. </configuration>
  125. <dependencies>
  126. <dependency>
  127. <groupId>com.oracle</groupId>
  128. <artifactId>ojdbc6</artifactId>
  129. <version>11.2.0</version>
  130. </dependency>
  131. <!--<dependency>-->
  132. <!--<groupId>org.mybatis.generator</groupId>-->
  133. <!--<artifactId>mybatis-generator-core</artifactId>-->
  134. <!--<version>1.3.7</version>-->
  135. <!--</dependency>-->
  136. </dependencies>
  137. </plugin>
  138. <plugin>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-maven-plugin</artifactId>
  141. <configuration>
  142. <fork>true</fork>
  143. </configuration>
  144. </plugin>
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-jar-plugin</artifactId>
  148. <configuration>
  149. <archive>
  150. <manifest>
  151. <mainClass>com.kingkong.bljs.BljsApplication</mainClass>
  152. </manifest>
  153. </archive>
  154. </configuration>
  155. </plugin>
  156. <!--<plugin>-->
  157. <!--<groupId>com.jolira</groupId>-->
  158. <!--<artifactId>onejar-maven-plugin</artifactId>-->
  159. <!--<version>1.4.4</version>-->
  160. <!--<executions>-->
  161. <!--<execution>-->
  162. <!--<configuration>-->
  163. <!--<attachToBuild>true</attachToBuild>-->
  164. <!--<classifier>onejar</classifier>-->
  165. <!--</configuration>-->
  166. <!--<goals>-->
  167. <!--<goal>one-jar</goal>-->
  168. <!--</goals>-->
  169. <!--</execution>-->
  170. <!--</executions>-->
  171. <!--</plugin>-->
  172. </plugins>
  173. </build>
  174. </project>