pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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>data-daq</artifactId>
  7. <groupId>com.simuwang</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-calc</artifactId>
  12. <description>数据采集计算模块</description>
  13. <version>1.0.0</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.simuwang</groupId>
  18. <artifactId>service-base</artifactId>
  19. </dependency>
  20. </dependencies>
  21. <!-- <build>-->
  22. <!-- <plugins>-->
  23. <!-- <plugin>-->
  24. <!-- <groupId>org.springframework.boot</groupId>-->
  25. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  26. <!-- </plugin>-->
  27. <!-- </plugins>-->
  28. <!-- </build>-->
  29. </project>