pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.gis</groupId>
  6. <artifactId>gis_application</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <name>gis_application</name>
  10. <description>项目入口</description>
  11. <parent>
  12. <groupId>com.gis</groupId>
  13. <artifactId>smart_chengdu_xindu_dafeng</artifactId>
  14. <version>1.0.0</version>
  15. </parent>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.gis</groupId>
  22. <artifactId>gis_web</artifactId>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <!--<plugins>-->
  27. <!--<plugin>-->
  28. <!--<groupId>org.springframework.boot</groupId>-->
  29. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  30. <!--</plugin>-->
  31. <!--</plugins>-->
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <version>3.8.1</version>
  37. <configuration>
  38. <source>8</source>
  39. <target>8</target>
  40. </configuration>
  41. </plugin>
  42. </plugins>
  43. <finalName>${parent.artifactId}</finalName>
  44. </build>
  45. <repositories>
  46. <repository>
  47. <id>releases</id>
  48. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  49. </repository>
  50. <repository>
  51. <id>nexus-aliyun</id>
  52. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  53. </repository>
  54. <repository>
  55. <id>snapshots</id>
  56. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  57. </repository>
  58. </repositories>
  59. <distributionManagement>
  60. <repository>
  61. <!-- 这里的ID要和setting的id一致 -->
  62. <id>releases</id>
  63. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  64. </repository>
  65. <!--这是打成快照版本的配置 -->
  66. <snapshotRepository>
  67. <id>snapshots</id>
  68. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  69. </snapshotRepository>
  70. </distributionManagement>
  71. </project>