pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. <parent>
  7. <artifactId>iot-module</artifactId>
  8. <groupId>cc.iotkit</groupId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>iot-contribution</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.bouncycastle</groupId>
  24. <artifactId>bcprov-jdk15on</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.aliyun.oss</groupId>
  28. <artifactId>aliyun-sdk-oss</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>joda-time</groupId>
  32. <artifactId>joda-time</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>it.ozimov</groupId>
  36. <artifactId>embedded-redis</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <artifactId>slf4j-simple</artifactId>
  40. <groupId>org.slf4j</groupId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>cc.iotkit</groupId>
  46. <artifactId>iot-common-model</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cc.iotkit</groupId>
  50. <artifactId>iot-common-core</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>cc.iotkit</groupId>
  54. <artifactId>iot-rule-engine</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>cc.iotkit</groupId>
  58. <artifactId>iot-screen</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>cc.iotkit</groupId>
  62. <artifactId>iot-component-oss</artifactId>
  63. <version>${revision}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>cc.iotkit</groupId>
  67. <artifactId>iot-component-server</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>cc.iotkit</groupId>
  71. <artifactId>iot-component-converter</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>cc.iotkit</groupId>
  75. <artifactId>iot-virtual-device</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>cc.iotkit</groupId>
  79. <artifactId>iot-message-core</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>cc.iotkit</groupId>
  83. <artifactId>iot-temporal-service</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>cc.iotkit</groupId>
  87. <artifactId>iot-data-serviceImpl-rdb</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>cc.iotkit</groupId>
  91. <artifactId>iot-data-serviceImpl-cache</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>cc.iotkit</groupId>
  95. <artifactId>iot-common-web</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>cc.iotkit</groupId>
  99. <artifactId>iot-common-doc</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>cc.iotkit</groupId>
  103. <artifactId>iot-common-satoken</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>cc.iotkit</groupId>
  107. <artifactId>iot-common-excel</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>cc.iotkit</groupId>
  111. <artifactId>iot-common-log</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>io.github.linpeilie</groupId>
  115. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  116. </dependency>
  117. </dependencies>
  118. <build>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-compiler-plugin</artifactId>
  123. <version>3.8.1</version>
  124. <configuration>
  125. <source>${java.version}</source> <!-- depending on your project -->
  126. <target>${java.version}</target> <!-- depending on your project -->
  127. <encoding>utf8</encoding>
  128. <annotationProcessorPaths>
  129. <path>
  130. <groupId>org.projectlombok</groupId>
  131. <artifactId>lombok</artifactId>
  132. <version>${lombok.version}</version>
  133. </path>
  134. <path>
  135. <groupId>io.github.linpeilie</groupId>
  136. <artifactId>mapstruct-plus-processor</artifactId>
  137. <version>${mapstruct-plus.version}</version>
  138. </path>
  139. <path>
  140. <groupId>org.projectlombok</groupId>
  141. <artifactId>lombok-mapstruct-binding</artifactId>
  142. <version>0.2.0</version>
  143. </path>
  144. <!-- other annotation processors -->
  145. </annotationProcessorPaths>
  146. </configuration>
  147. </plugin>
  148. <plugin>
  149. <!--因为QueryDsl是类型安全的,所以还需要加上Maven APT plugin,使用 APT 自动生成Q类:-->
  150. <groupId>com.mysema.maven</groupId>
  151. <artifactId>apt-maven-plugin</artifactId>
  152. <version>1.1.3</version>
  153. <executions>
  154. <execution>
  155. <phase>generate-sources</phase>
  156. <goals>
  157. <goal>process</goal>
  158. </goals>
  159. <configuration>
  160. <outputDirectory>target/generated-sources/java</outputDirectory>
  161. <processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
  162. </configuration>
  163. </execution>
  164. </executions>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. </project>