pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.macro.mall</groupId>
  5. <artifactId>mall-admin</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>mall-admin</name>
  9. <description>mall-admin project for mall</description>
  10. <parent>
  11. <groupId>com.macro.mall</groupId>
  12. <artifactId>mall</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.macro.mall</groupId>
  18. <artifactId>mall-mbg</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.macro.mall</groupId>
  22. <artifactId>mall-security</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.aliyun.oss</groupId>
  26. <artifactId>aliyun-sdk-oss</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>commons-logging</groupId>
  30. <artifactId>commons-logging</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.minio</groupId>
  36. <artifactId>minio</artifactId>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-maven-plugin</artifactId>
  44. </plugin>
  45. <plugin>
  46. <groupId>io.fabric8</groupId>
  47. <artifactId>docker-maven-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>