pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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-api</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-api</name>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.storlead.boot</groupId>
  18. <artifactId>storlead-mail</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.storlead.boot</groupId>
  22. <artifactId>storlead-web</artifactId>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-maven-plugin</artifactId>
  30. <configuration>
  31. <mainClass>com.storlead.api.StorleadMailServiceApplication</mainClass>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </project>