pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  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. <groupId>com.zcxk</groupId>
  7. <artifactId>zoniot-charge</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zoniot-charge-api</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-maven-plugin</artifactId>
  18. <executions>
  19. <execution>
  20. <phase>none</phase>
  21. </execution>
  22. </executions>
  23. <configuration>
  24. <classifier>execute</classifier>
  25. <skip>true</skip>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. </project>