pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <artifactId>army_zhengzhou</artifactId>
  7. <groupId>com.gis</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <groupId>com.gis</groupId>
  11. <artifactId>gis_application</artifactId>
  12. <version>1.0.0</version>
  13. <packaging>jar</packaging>
  14. <name>gis_application</name>
  15. <description>项目入口</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <!-- 包含controller层需要添加依赖到启动类配置文件-->
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.gis</groupId>
  23. <artifactId>gis_web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.gis</groupId>
  27. <artifactId>gis_admin</artifactId>
  28. <version>1.0.0</version>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. </plugin>
  37. </plugins>
  38. <!--<finalName>army_zhengzhou</finalName>-->
  39. <finalName>${parent.artifactId}</finalName>
  40. </build>
  41. </project>