pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <artifactId>BladeX-Saas-Project</artifactId>
  7. <groupId>com.fjhx</groupId>
  8. <version>2.8.2.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>new-mail</artifactId>
  12. <name>${project.artifactId}</name>
  13. <version>2.8.2.RELEASE</version>
  14. <packaging>jar</packaging>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>commons-lang</groupId>
  23. <artifactId>commons-lang</artifactId>
  24. <version>2.6</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springblade</groupId>
  28. <artifactId>blade-core-boot</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springblade</groupId>
  32. <artifactId>blade-core-cloud</artifactId>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-antrun-plugin</artifactId>
  40. </plugin>
  41. <plugin>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-maven-plugin</artifactId>
  44. <executions>
  45. <execution>
  46. <goals>
  47. <goal>repackage</goal>
  48. </goals>
  49. </execution>
  50. </executions>
  51. <configuration>
  52. <includeSystemScope>true</includeSystemScope>
  53. <mainClass>com.fjhx.MailApplication</mainClass>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>