pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.customs.cq.datacenter</groupId>
  7. <artifactId>secure-producting</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>secure-producting-oss</artifactId>
  12. <description>OSS对象存储模块</description>
  13. <dependencies>
  14. <!--==================================== 项目自身模块 - start ====================================-->
  15. <!-- 通用工具-->
  16. <dependency>
  17. <groupId>com.customs.cq.datacenter</groupId>
  18. <artifactId>secure-producting-common</artifactId>
  19. </dependency>
  20. <!--==================================== 项目自身模块 - end ====================================-->
  21. <!-- 替换tomcat为Undertow容器 https://mp.weixin.qq.com/s/65kfczDEvPQjnYRbX45Xvw -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-undertow</artifactId>
  25. <exclusions>
  26. <exclusion>
  27. <artifactId>wildfly-common</artifactId>
  28. <groupId>org.wildfly.common</groupId>
  29. </exclusion>
  30. </exclusions>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.wildfly.common</groupId>
  34. <artifactId>wildfly-common</artifactId>
  35. <version>1.5.2.Final</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.amazonaws</groupId>
  39. <artifactId>aws-java-sdk-s3</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.hutool</groupId>
  43. <artifactId>hutool-core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-api</artifactId>
  52. </dependency>
  53. <!--常用工具类 -->
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-lang3</artifactId>
  57. </dependency>
  58. </dependencies>
  59. </project>