pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>net.logstash.logback</groupId>
  30. <artifactId>logstash-logback-encoder</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>com.spotify</groupId>-->
  41. <!--<artifactId>docker-maven-plugin</artifactId>-->
  42. <!--<version>${docker.maven.plugin.version}</version>-->
  43. <!--<executions>-->
  44. <!--<execution>-->
  45. <!--<id>build-image</id>-->
  46. <!--<phase>package</phase>-->
  47. <!--<goals>-->
  48. <!--<goal>build</goal>-->
  49. <!--</goals>-->
  50. <!--</execution>-->
  51. <!--</executions>-->
  52. <!--<configuration>-->
  53. <!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
  54. <!--<dockerHost>${docker.host}</dockerHost>-->
  55. <!--<baseImage>java:8</baseImage>-->
  56. <!--<entryPoint>["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]-->
  57. <!--</entryPoint>-->
  58. <!--<resources>-->
  59. <!--<resource>-->
  60. <!--<targetPath>/</targetPath>-->
  61. <!--<directory>${project.build.directory}</directory>-->
  62. <!--<include>${project.build.finalName}.jar</include>-->
  63. <!--</resource>-->
  64. <!--</resources>-->
  65. <!--</configuration>-->
  66. <!--</plugin>-->
  67. </plugins>
  68. </build>
  69. </project>