pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>three-framework</artifactId>
  6. <groupId>com.three</groupId>
  7. <version>2.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>auth-server</artifactId>
  11. <packaging>jar</packaging>
  12. <version>2.0</version>
  13. <dependencies>
  14. <!-- <dependency>-->
  15. <!-- <groupId>com.three</groupId>-->
  16. <!-- <artifactId>three-client</artifactId>-->
  17. <!-- <version>2.0</version>-->
  18. <!-- </dependency>-->
  19. <dependency>
  20. <groupId>com.three</groupId>
  21. <artifactId>three-data-api</artifactId>
  22. <version>2.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.three</groupId>
  26. <artifactId>three-data-api-dm</artifactId>
  27. <version>2.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.three</groupId>
  31. <artifactId>three-datasource</artifactId>
  32. <version>2.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.three</groupId>
  36. <artifactId>three-redis</artifactId>
  37. <version>2.0</version>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.three</groupId>-->
  41. <!-- <artifactId>three-auth</artifactId>-->
  42. <!-- <version>2.0</version>-->
  43. <!-- </dependency>-->
  44. <dependency>
  45. <groupId>com.three</groupId>
  46. <artifactId>three-security</artifactId>
  47. <version>2.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.three</groupId>
  51. <artifactId>three-quartz</artifactId>
  52. <version>2.0</version>
  53. </dependency>
  54. <!--<dependency>-->
  55. <!--<groupId>com.three</groupId>-->
  56. <!--<artifactId>three-message</artifactId>-->
  57. <!--<version>1.0</version>-->
  58. <!--</dependency>-->
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>