pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  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</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-mail-mkt</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-mail-mkt</name>
  15. <description>Marketing mail delivery business (separate from CRM mailbox)</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.storlead.boot</groupId>
  19. <artifactId>storlead-mail-common</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <scope>provided</scope>
  26. </dependency>
  27. </dependencies>
  28. </project>