pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <parent>
  6. <groupId>io.awspring.cloud</groupId>
  7. <artifactId>spring-cloud-aws-samples</artifactId>
  8. <version>3.2.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>spring-cloud-aws-ses-sample</artifactId>
  12. <name>Spring Cloud AWS SES Sample</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>io.awspring.cloud</groupId>
  16. <artifactId>spring-cloud-aws-starter-ses</artifactId>
  17. </dependency>
  18. <!-- This is needed only if you wish to send HTML emails or emails with attachments. This is the Java Mail API
  19. -->
  20. <dependency>
  21. <groupId>jakarta.mail</groupId>
  22. <artifactId>jakarta.mail-api</artifactId>
  23. </dependency>
  24. <!-- This is needed only if you wish to send HTML emails or emails with attachments. This is an implementation
  25. of the Java Mail API-->
  26. <dependency>
  27. <groupId>org.eclipse.angus</groupId>
  28. <artifactId>jakarta.mail</artifactId>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>