pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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>aivfo-project-build</artifactId>
  7. <groupId>com.aivfo</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <packaging>pom</packaging>
  13. <artifactId>aivfo-model-parent</artifactId>
  14. <properties>
  15. <aivfo-element-common.version>${revision}</aivfo-element-common.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.aivfo</groupId>
  20. <artifactId>aivfo-element-common</artifactId>
  21. <version>${aivfo-element-common.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. </dependencies>
  29. <!-- <dependencyManagement> -->
  30. <!-- <dependencies> -->
  31. <!-- <dependency> -->
  32. <!-- <groupId>com.aivfo</groupId> -->
  33. <!-- <artifactId>aivfo-element-dependencies</artifactId> -->
  34. <!-- <version>${revision}</version> -->
  35. <!-- <type>pom</type> -->
  36. <!-- <scope>import</scope> -->
  37. <!-- </dependency> -->
  38. <!-- </dependencies> -->
  39. <!-- </dependencyManagement> -->
  40. </project>