pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. </dependency>
  28. <dependency>
  29. <groupId>io.minio</groupId>
  30. <artifactId>minio</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-maven-plugin</artifactId>
  38. </plugin>
  39. <plugin>
  40. <groupId>io.fabric8</groupId>
  41. <artifactId>docker-maven-plugin</artifactId>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>