pom.xml 3.4 KB

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