pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>tofly-webParent</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tofly-auth</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0.0</version>
  14. <dependencies>
  15. <!--<dependency>-->
  16. <!--<groupId>com.tofly</groupId>-->
  17. <!--<artifactId>common-core</artifactId>-->
  18. <!--<version>1.0.0</version>-->
  19. <!--</dependency>-->
  20. <dependency>
  21. <groupId>com.tofly</groupId>
  22. <artifactId>common-oauth</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.tofly</groupId>
  27. <artifactId>common-redis</artifactId>
  28. <version>1.0.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.tofly</groupId>
  32. <artifactId>common-entity</artifactId>
  33. <version>1.0.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.tofly</groupId>
  37. <artifactId>common-log</artifactId>
  38. <version>1.0.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <!--<dependency>-->
  46. <!--<groupId>com.tofly</groupId>-->
  47. <!--<artifactId>common-entity</artifactId>-->
  48. <!--<version>1.0.0</version>-->
  49. <!--</dependency>-->
  50. <!--&lt;!&ndash;undertow容器&ndash;&gt;-->
  51. <!--<dependency>-->
  52. <!--<groupId>org.springframework.boot</groupId>-->
  53. <!--<artifactId>spring-boot-starter-undertow</artifactId>-->
  54. <!--</dependency>-->
  55. <!--&lt;!&ndash;spring security 、oauth、jwt依赖&ndash;&gt;-->
  56. <!--<dependency>-->
  57. <!--<groupId>org.springframework.cloud</groupId>-->
  58. <!--<artifactId>spring-cloud-starter-security</artifactId>-->
  59. <!--<exclusions>-->
  60. <!--&lt;!&ndash;旧版本 redis操作有问题&ndash;&gt;-->
  61. <!--<exclusion>-->
  62. <!--<artifactId>spring-security-oauth2</artifactId>-->
  63. <!--<groupId>org.springframework.security.oauth</groupId>-->
  64. <!--</exclusion>-->
  65. <!--</exclusions>-->
  66. <!--</dependency>-->
  67. <!--<dependency>-->
  68. <!--<groupId>org.springframework.security.oauth</groupId>-->
  69. <!--<artifactId>spring-security-oauth2</artifactId>-->
  70. <!--</dependency>-->
  71. <!--JDBC相关-->
  72. <!--<dependency>-->
  73. <!--<groupId>org.springframework.boot</groupId>-->
  74. <!--<artifactId>spring-boot-starter-jdbc</artifactId>-->
  75. <!--</dependency>-->
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. <executions>
  83. <execution>
  84. <goals>
  85. <goal>repackage</goal>
  86. </goals>
  87. </execution>
  88. </executions>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>