pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.yunfei</groupId>
  6. <artifactId>adapter</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>adapter</name>
  9. <description>adapter</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <maven.compiler.source>1.8</maven.compiler.source>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <spring-boot.version>2.7.5</spring-boot.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.t-io</groupId>
  31. <artifactId>tio-core</artifactId>
  32. <version>3.5.0.v20190822-RELEASE</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.pdfbox</groupId>
  36. <artifactId>pdfbox</artifactId>
  37. <version>2.0.27</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.poi</groupId>
  41. <artifactId>poi-ooxml</artifactId>
  42. <version>5.1.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.hutool</groupId>
  46. <artifactId>hutool-all</artifactId>
  47. <version>5.8.16</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.eclipse.paho</groupId>
  51. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  52. <version>1.2.5</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-aop</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>fastjson</artifactId>
  61. <version>2.0.19</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.aspectj</groupId>
  65. <artifactId>aspectjweaver</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <dependencyManagement>
  73. <dependencies>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-dependencies</artifactId>
  77. <version>${spring-boot.version}</version>
  78. <type>pom</type>
  79. <scope>import</scope>
  80. </dependency>
  81. </dependencies>
  82. </dependencyManagement>
  83. <build>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-compiler-plugin</artifactId>
  88. <version>3.8.1</version>
  89. <configuration>
  90. <source>8</source>
  91. <target>8</target>
  92. <encoding>UTF-8</encoding>
  93. <compilerArgs>
  94. <arg>-parameters</arg>
  95. </compilerArgs>
  96. </configuration>
  97. </plugin>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. <version>${spring-boot.version}</version>
  102. <configuration>
  103. <mainClass>com.yunfei.adapter.AdapterApplication</mainClass>
  104. <!-- <skip>true</skip>-->
  105. </configuration>
  106. <executions>
  107. <execution>
  108. <id>repackage</id>
  109. <goals>
  110. <goal>repackage</goal>
  111. </goals>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </project>