pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>17</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>3.0.2</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.projectlombok</groupId>
  23. <artifactId>lombok</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.t-io</groupId>
  28. <artifactId>tio-core</artifactId>
  29. <version>3.5.0.v20190822-RELEASE</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.hutool</groupId>
  33. <artifactId>hutool-all</artifactId>
  34. <version>5.7.12</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.eclipse.paho</groupId>
  38. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  39. <version>1.2.5</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-aop</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>fastjson</artifactId>
  48. <version>1.2.80</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.aspectj</groupId>
  52. <artifactId>aspectjweaver</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter</artifactId>
  57. </dependency>
  58. </dependencies>
  59. <dependencyManagement>
  60. <dependencies>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-dependencies</artifactId>
  64. <version>${spring-boot.version}</version>
  65. <type>pom</type>
  66. <scope>import</scope>
  67. </dependency>
  68. </dependencies>
  69. </dependencyManagement>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.8.1</version>
  76. <configuration>
  77. <source>17</source>
  78. <target>17</target>
  79. <encoding>UTF-8</encoding>
  80. <compilerArgs>
  81. <arg>-parameters</arg>
  82. </compilerArgs>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. <version>${spring-boot.version}</version>
  89. <configuration>
  90. <mainClass>com.yunfei.adapter.AdapterApplication</mainClass>
  91. <skip>true</skip>
  92. </configuration>
  93. <executions>
  94. <execution>
  95. <id>repackage</id>
  96. <goals>
  97. <goal>repackage</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>