pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. <groupId>com.echepei</groupId>
  7. <artifactId>common-utils</artifactId>
  8. <version>1.1</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.projectlombok</groupId>
  17. <artifactId>lombok</artifactId>
  18. <version>1.18.36</version>
  19. <scope>provided</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.sun.mail</groupId>
  23. <artifactId>jakarta.mail</artifactId>
  24. <version>2.0.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>jakarta.activation</groupId>
  28. <artifactId>jakarta.activation-api</artifactId>
  29. <version>2.0.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-core</artifactId>
  34. <version>5.3.39</version>
  35. </dependency>
  36. <!-- stimulsoft 依赖 -->
  37. <dependency>
  38. <groupId>com.stimulsoft</groupId>
  39. <artifactId>stimulsoft-reports-report</artifactId>
  40. <version>2025.1.6</version>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>org.apache.xmlgraphics</groupId>
  44. <artifactId>batik-all</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.xmlgraphics</groupId>
  50. <artifactId>batik-all</artifactId>
  51. <version>1.17</version>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>commons-io</groupId>
  55. <artifactId>commons-io</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-io</groupId>
  61. <artifactId>commons-io</artifactId>
  62. <version>2.14.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>ch.qos.logback</groupId>
  66. <artifactId>logback-classic</artifactId>
  67. <version>1.5.18</version>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-shade-plugin</artifactId>
  75. <version>3.5.0</version>
  76. <executions>
  77. <execution>
  78. <phase>package</phase>
  79. <goals><goal>shade</goal></goals>
  80. <configuration>
  81. <createDependencyReducedPom>true</createDependencyReducedPom>
  82. </configuration>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>