pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.storlead.boot</groupId>
  8. <artifactId>storlead-mail-service</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-mail-api</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-mail-api</name>
  15. <dependencies>
  16. <!-- dispatch 依赖 crm + mkt,调度与业务一并引入 -->
  17. <dependency>
  18. <groupId>com.storlead.boot</groupId>
  19. <artifactId>storlead-mail-dispatch</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.storlead.boot</groupId>
  23. <artifactId>storlead-web</artifactId>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <!-- 与 Jenkins Dockerfile COPY ${module}/target/${module}.jar 对齐 -->
  28. <finalName>${project.artifactId}</finalName>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-maven-plugin</artifactId>
  33. <configuration>
  34. <mainClass>com.storlead.StorleadMailServiceApplication</mainClass>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>