pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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>com.kingkong</groupId>
  7. <artifactId>bljs</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.kingkong</groupId>
  11. <artifactId>facade</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>facade</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-cache</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-security</artifactId>
  39. <version>2.1.2.RELEASE</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.security.oauth</groupId>
  43. <artifactId>spring-security-oauth2</artifactId>
  44. <version>2.1.2.RELEASE</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.security</groupId>
  48. <artifactId>spring-security-config</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.oracle</groupId>
  52. <artifactId>ojdbc6</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>druid</artifactId>
  57. <version>1.0.28</version>
  58. </dependency>
  59. <!--<dependency>-->
  60. <!--<groupId>org.mybatis.spring.boot</groupId>-->
  61. <!--<artifactId>mybatis-spring-boot-starter</artifactId>-->
  62. <!--<version>2.0.0</version>-->
  63. <!--</dependency>-->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-data-redis</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.session</groupId>
  70. <artifactId>spring-session-data-redis</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.kingkong</groupId>
  74. <artifactId>common</artifactId>
  75. <version>0.0.1-SNAPSHOT</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.kingkong</groupId>
  80. <artifactId>service</artifactId>
  81. <version>0.0.1-SNAPSHOT</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.kingkong</groupId>
  86. <artifactId>repo</artifactId>
  87. <version>0.0.1-SNAPSHOT</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-devtools</artifactId>
  93. <optional>true</optional>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. <configuration>
  102. <fork>true</fork>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>