pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <groupId>com.zcxk.zoniot</groupId>
  6. <artifactId>smart-city-common</artifactId>
  7. <version>0.0.1</version>
  8. <name>smart-city-common</name>
  9. <description>水务物联网公共模块</description>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <java.version>1.8</java.version>
  13. <skipTests>true</skipTests>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.projectlombok</groupId>
  18. <artifactId>lombok</artifactId>
  19. <version>1.18.2</version>
  20. <optional>true</optional>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-maven-plugin</artifactId>
  28. <executions>
  29. <execution>
  30. <phase>none</phase>
  31. </execution>
  32. </executions>
  33. <configuration>
  34. <classifier>execute</classifier>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>