pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. <parent>
  5. <artifactId>runeconmy-nx</artifactId>
  6. <groupId>org.example</groupId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.gyee</groupId>
  11. <artifactId>data-adapter</artifactId>
  12. <!-- <version>1.0.0-SNAPSHOT</version>-->
  13. <name>data-adapter</name>
  14. <description>data-adapter</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.baomidou</groupId>
  28. <artifactId>mybatis-plus-boot-starter</artifactId>
  29. <version>${mybatis.plus.boot.starter.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.postgresql</groupId>
  33. <artifactId>postgresql</artifactId>
  34. <scope>runtime</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.integration</groupId>
  43. <artifactId>spring-integration-core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-integration</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.integration</groupId>
  51. <artifactId>spring-integration-stream</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.integration</groupId>
  55. <artifactId>spring-integration-mqtt</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-webflux</artifactId>
  60. </dependency>
  61. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>fastjson</artifactId>
  65. <version>2.0.40</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>antlr</groupId>
  69. <artifactId>antlr</artifactId>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>druid</artifactId>
  75. <version>1.2.8</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>cn.hutool</groupId>
  79. <artifactId>hutool-all</artifactId>
  80. <version>5.1.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.taosdata.jdbc</groupId>
  88. <artifactId>taos-jdbcdriver</artifactId>
  89. <version>3.3.2</version>
  90. </dependency>
  91. </dependencies>
  92. <dependencyManagement>
  93. <dependencies>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-dependencies</artifactId>
  97. <version>${spring-boot.version}</version>
  98. <type>pom</type>
  99. <scope>import</scope>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/org.json/json -->
  102. <dependency>
  103. <groupId>org.json</groupId>
  104. <artifactId>json</artifactId>
  105. <version>20231013</version>
  106. </dependency>
  107. </dependencies>
  108. </dependencyManagement>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-compiler-plugin</artifactId>
  114. <version>3.8.1</version>
  115. <configuration>
  116. <source>1.8</source>
  117. <target>1.8</target>
  118. <encoding>UTF-8</encoding>
  119. </configuration>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. <version>2.7.1</version>
  125. <configuration>
  126. <mainClass>com.gyee.dataadapter.DataAdapterApp</mainClass>
  127. <skip>false</skip>
  128. </configuration>
  129. <executions>
  130. <execution>
  131. <id>repackage</id>
  132. <goals>
  133. <goal>repackage</goal>
  134. </goals>
  135. </execution>
  136. </executions>
  137. </plugin>
  138. </plugins>
  139. </build>
  140. </project>