pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.bosshand.virgo</groupId>
  6. <artifactId>bim</artifactId>
  7. <!-- Inherit defaults from Spring Boot -->
  8. <parent>
  9. <groupId>com.bosshand</groupId>
  10. <artifactId>virgo</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <relativePath>../pom.xml</relativePath>
  13. </parent>
  14. <repositories>
  15. <repository>
  16. <id>com.e-iceblue</id>
  17. <url>http://repo.e-iceblue.cn/repository/maven-public/</url>
  18. </repository>
  19. </repositories>
  20. <!-- Add typical dependencies for a web application -->
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-devtools</artifactId>
  25. <scope>runtime</scope>
  26. <optional>true</optional>
  27. </dependency>
  28. <!--aliyunOSS-->
  29. <dependency>
  30. <groupId>com.aliyun.oss</groupId>
  31. <artifactId>aliyun-sdk-oss</artifactId>
  32. <version>2.4.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>commons-fileupload</groupId>
  36. <artifactId>commons-fileupload</artifactId>
  37. <version>1.3.1</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>log4j</groupId>
  41. <artifactId>log4j</artifactId>
  42. <version>1.2.17</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.bosshand.virgo</groupId>
  46. <artifactId>core</artifactId>
  47. <version>0.0.1-SNAPSHOT</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.squareup.okhttp3</groupId>
  51. <artifactId>okhttp</artifactId>
  52. <version>3.6.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.cloud</groupId>
  60. <artifactId>spring-cloud-starter-openfeign</artifactId>
  61. </dependency>
  62. </dependencies>
  63. <properties>
  64. <log4j2.version>2.15.0</log4j2.version>
  65. </properties>
  66. <!-- Package as an executable jar -->
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <configuration>
  73. <includeSystemScope>true</includeSystemScope>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>