pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <groupId>com.tofly</groupId>
  7. <artifactId>whatInfo</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tofly-auth-whatInfo</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. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>