pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <modelVersion>4.0.0</modelVersion>
  6. <!-- 父模块配置 -->
  7. <parent>
  8. <groupId>com.wbspool</groupId>
  9. <artifactId>fastboot-comp</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <!-- 项目信息 -->
  13. <groupId>com.kuyuntech</groupId>
  14. <artifactId>vrv</artifactId>
  15. <version>0.0.1-SNAPSHOT</version>
  16. <packaging>pom</packaging>
  17. <name>vrv</name>
  18. <!-- 模块信息配置 -->
  19. <modules>
  20. <module>vrv-core-service</module>
  21. <module>vrv-core-api</module>
  22. <module>vrv-core-restful</module>
  23. <module>vrv-platform</module>
  24. </modules>
  25. <!-- 项目依赖版本配置 -->
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.kuyuntech</groupId>
  30. <artifactId>vrv-core-restful</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.kuyuntech</groupId>
  35. <artifactId>vrv-core-service</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.kuyuntech</groupId>
  40. <artifactId>vrv-core-api</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <!--fastboot-auth-->
  44. <dependency>
  45. <groupId>com.wbspool.fastboot.comp</groupId>
  46. <artifactId>auth-comp-core-service</artifactId>
  47. <version>${fastboot.comp.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.wbspool.fastboot.comp</groupId>
  51. <artifactId>auth-comp-common-restful</artifactId>
  52. <version>${fastboot.comp.version}</version>
  53. </dependency>
  54. </dependencies>
  55. </dependencyManagement>
  56. </project>