pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.5</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.huimv</groupId>
  12. <artifactId>huimv-smart-management</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>huimv-smart-management</name>
  15. <description>业务管理模块</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <spring-cloud.version>2020.0.2</spring-cloud.version>
  19. </properties>
  20. <repositories>
  21. <repository>
  22. <id>aliyun</id>
  23. <name>aliyun Repository</name>
  24. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. <repository>
  30. <id>jeecg</id>
  31. <name>jeecg Repository</name>
  32. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  33. <snapshots>
  34. <enabled>false</enabled>
  35. </snapshots>
  36. </repository>
  37. </repositories>
  38. <dependencies>
  39. <dependency>
  40. <groupId>com.huimv</groupId>
  41. <artifactId>huimv-smart-common</artifactId>
  42. <version>1.0-SNAPSHOT</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-web</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.cloud</groupId>
  50. <artifactId>spring-cloud-starter-openfeign</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.jeecgframework</groupId>
  54. <artifactId>autopoi-web</artifactId>
  55. <version>1.0.4</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>commons-codec</groupId>
  59. <artifactId>commons-codec</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-test</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. </dependencies>
  69. <dependencyManagement>
  70. <dependencies>
  71. <dependency>
  72. <groupId>org.springframework.cloud</groupId>
  73. <artifactId>spring-cloud-dependencies</artifactId>
  74. <version>${spring-cloud.version}</version>
  75. <type>pom</type>
  76. <scope>import</scope>
  77. </dependency>
  78. </dependencies>
  79. </dependencyManagement>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. </plugin>
  86. </plugins>
  87. <pluginManagement>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-compiler-plugin</artifactId>
  92. <configuration>
  93. <source>1.8</source>
  94. <target>1.8</target>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </pluginManagement>
  99. </build>
  100. </project>