pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <artifactId>fframwork</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tofly-auth</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!--配置中心客户端-->
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-starter-config</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.tofly</groupId>
  21. <artifactId>common-oauth</artifactId>
  22. <version>1.0-SNAPSHOT</version>
  23. </dependency>
  24. <!--web 模块-->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. <exclusions>
  29. <!--排除tomcat依赖-->
  30. <exclusion>
  31. <artifactId>spring-boot-starter-tomcat</artifactId>
  32. <groupId>org.springframework.boot</groupId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <!--undertow容器-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-undertow</artifactId>
  40. </dependency>
  41. <!--spring security 、oauth、jwt依赖-->
  42. <!--<dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-starter-security</artifactId>
  45. <exclusions>
  46. &lt;!&ndash;旧版本 redis操作有问题&ndash;&gt;
  47. <exclusion>
  48. <artifactId>spring-security-oauth2</artifactId>
  49. <groupId>org.springframework.security.oauth</groupId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.security.oauth</groupId>
  55. <artifactId>spring-security-oauth2</artifactId>
  56. <version>${security.oauth.version}</version>
  57. </dependency>-->
  58. <!--JDBC相关-->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-jdbc</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.oracle</groupId>
  65. <artifactId>ojdbc6</artifactId>
  66. <version>11.2.0.4.0-atlassian-hosted</version>
  67. </dependency>
  68. <!-- <dependency>
  69. <groupId>com.baomidou</groupId>
  70. <artifactId>mybatis-plus-boot-starter</artifactId>
  71. <version>${mybatis-plus.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.oracle</groupId>
  75. <artifactId>ojdbc14</artifactId>
  76. <version>10.2.0.5.0</version>
  77. </dependency>-->
  78. </dependencies>
  79. </project>