pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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.5.9</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.obs</groupId>
  12. <artifactId>obsServices</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>obsServices</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <java.version>1.8</java.version>
  19. <!-- <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>-->
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.huaweicloud</groupId>
  37. <artifactId>esdk-obs-java</artifactId>
  38. <version>3.22.3.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-lang3</artifactId>
  43. <version>3.7</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>fastjson</artifactId>
  48. <version>2.0.24</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>commons-fileupload</groupId>
  56. <artifactId>commons-fileupload</artifactId>
  57. <version>1.3.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-io</groupId>
  61. <artifactId>commons-io</artifactId>
  62. <version>2.4</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.logging.log4j</groupId>
  66. <artifactId>log4j-api</artifactId>
  67. <version>2.17.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.logging.log4j</groupId>
  71. <artifactId>log4j-core</artifactId>
  72. <version>2.17.2</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mitre.dsmiley.httpproxy</groupId>
  76. <artifactId>smiley-http-proxy-servlet</artifactId>
  77. <version>1.10</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.taobao.top</groupId>
  81. <artifactId>QRCode</artifactId>
  82. <version>1.0</version>
  83. <scope>system</scope>
  84. <systemPath>${pom.basedir}/lib/QRCode.jar</systemPath>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.taobao.top</groupId>
  88. <artifactId>Qrcode_swetake</artifactId>
  89. <version>1.0</version>
  90. <scope>system</scope>
  91. <systemPath>${pom.basedir}/lib/Qrcode_swetake.jar</systemPath>
  92. </dependency>
  93. </dependencies>
  94. <build>
  95. <plugins>
  96. <plugin>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-maven-plugin</artifactId>
  99. <version>2.3.7.RELEASE</version>
  100. <executions>
  101. <execution>
  102. <goals>
  103. <goal>repackage</goal>
  104. </goals>
  105. </execution>
  106. </executions>
  107. <configuration>
  108. <!--设置为true,以便把本地的system的jar也包括进来-->
  109. <includeSystemScope>true</includeSystemScope>
  110. <excludes>
  111. <exclude>
  112. <groupId>org.projectlombok</groupId>
  113. <artifactId>lombok</artifactId>
  114. </exclude>
  115. </excludes>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. <repositories>
  121. <repository>
  122. <id>public</id>
  123. <name>aliyun nexus</name>
  124. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  125. <releases>
  126. <enabled>true</enabled>
  127. </releases>
  128. </repository>
  129. </repositories>
  130. <pluginRepositories>
  131. <pluginRepository>
  132. <id>public</id>
  133. <name>aliyun nexus</name>
  134. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  135. <releases>
  136. <enabled>true</enabled>
  137. </releases>
  138. <snapshots>
  139. <enabled>false</enabled>
  140. </snapshots>
  141. </pluginRepository>
  142. </pluginRepositories>
  143. </project>