pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.raycos</groupId>
  7. <artifactId>raycos</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>raycos_datacenter_api</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. <name>raycos-datacenter-api</name>
  13. <packaging>jar</packaging>
  14. <description>raycos-datacenter-api</description>
  15. <properties>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.raycos</groupId>
  20. <artifactId>raycoscommon</artifactId>
  21. <version>raycos_common-0.0.1-SNAPSHOT</version>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-maven-plugin</artifactId>
  29. </plugin>
  30. </plugins>
  31. </build>
  32. </project>