pom.xml 915 B

123456789101112131415161718192021222324252627
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.mrbird</groupId>
  7. <artifactId>febs-server</artifactId>
  8. <version>1.4-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-server-test</artifactId>
  12. <version>1.4-RELEASE</version>
  13. <name>FEBS-Server-Test</name>
  14. <description>FEBS-Server-Test测试服务模块</description>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-maven-plugin</artifactId>
  20. </plugin>
  21. </plugins>
  22. </build>
  23. </project>