pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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.3</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. <boot.version>2.7.17</boot.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.projectlombok</groupId>
  18. <artifactId>lombok</artifactId>
  19. <version>1.18.36</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.sun.mail</groupId>
  24. <artifactId>jakarta.mail</artifactId>
  25. <version>2.0.1</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>jakarta.activation</groupId>
  29. <artifactId>jakarta.activation-api</artifactId>
  30. <version>2.0.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-core</artifactId>
  35. <version>5.3.39</version>
  36. </dependency>
  37. <!-- stimulsoft 依赖 -->
  38. <dependency>
  39. <groupId>com.stimulsoft</groupId>
  40. <artifactId>stimulsoft-reports-report</artifactId>
  41. <version>2025.1.6</version>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>org.apache.xmlgraphics</groupId>
  45. <artifactId>batik-all</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.xmlgraphics</groupId>
  51. <artifactId>batik-all</artifactId>
  52. <version>1.17</version>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>commons-io</groupId>
  56. <artifactId>commons-io</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-io</groupId>
  62. <artifactId>commons-io</artifactId>
  63. <version>2.14.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>ch.qos.logback</groupId>
  67. <artifactId>logback-classic</artifactId>
  68. <version>1.2.11</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-test</artifactId>
  73. <scope>test</scope>
  74. <version>${boot.version}</version>
  75. <exclusions>
  76. <exclusion>
  77. <groupId>com.jayway.jsonpath</groupId>
  78. <artifactId>json-path</artifactId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <dependency>
  83. <groupId>junit</groupId>
  84. <artifactId>junit</artifactId>
  85. <version>4.13.2</version>
  86. <scope>provided</scope>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-shade-plugin</artifactId>
  94. <version>3.5.0</version>
  95. <executions>
  96. <execution>
  97. <phase>package</phase>
  98. <goals><goal>shade</goal></goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>