物管理后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

170 lines
5.6 KiB

1 year ago
1 year ago
1 year ago
1 year ago
  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. <groupId>com.thing</groupId>
  8. <artifactId>thingbi</artifactId>
  9. <version>5.1</version>
  10. </parent>
  11. <artifactId>application</artifactId>
  12. <name>ThingBI Application</name>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-dependencies</artifactId>
  21. <version>${spring-boot.version}</version>
  22. <type>pom</type>
  23. </dependency>
  24. <!-- SpringBoot Web容器 -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.google.guava</groupId>
  31. <artifactId>guava</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mybatis</groupId>
  36. <artifactId>mybatis-spring</artifactId>
  37. </dependency>
  38. <!--common-->
  39. <dependency>
  40. <groupId>com.thing.common</groupId>
  41. <artifactId>data</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.thing.common</groupId>
  45. <artifactId>orm</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.thing.common</groupId>
  49. <artifactId>queue</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.thing.common</groupId>
  53. <artifactId>script</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.thing.common</groupId>
  57. <artifactId>security</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.thing.common</groupId>
  61. <artifactId>transport</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.thing.common</groupId>
  65. <artifactId>tskv</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.thing.common</groupId>
  69. <artifactId>util</artifactId>
  70. </dependency>
  71. <!--modules-->
  72. <dependency>
  73. <groupId>com.thing.modules</groupId>
  74. <artifactId>actor-biz</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.thing.modules</groupId>
  78. <artifactId>alarm</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.thing.modules</groupId>
  82. <artifactId>calculation</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.thing.modules</groupId>
  86. <artifactId>mock</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.thing.modules</groupId>
  90. <artifactId>report-analysis</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.thing.modules</groupId>
  94. <artifactId>configuration</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.thing.modules</groupId>
  98. <artifactId>dequeue</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.thing.modules</groupId>
  102. <artifactId>msg</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.thing.modules</groupId>
  106. <artifactId>quartz</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.thing.modules</groupId>
  110. <artifactId>carbon-track</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.thing.modules</groupId>
  114. <artifactId>carbon-public</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.thing.modules</groupId>
  118. <artifactId>equipment</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.thing.modules</groupId>
  122. <artifactId>thing</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.thing.tools</groupId>
  126. <artifactId>system-monitor</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.thing.tools</groupId>
  130. <artifactId>code-generator</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.thing.modules</groupId>
  134. <artifactId>filter-rule</artifactId>
  135. </dependency>
  136. <!-- test -->
  137. <dependency>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-starter-test</artifactId>
  140. <scope>test</scope>
  141. </dependency>
  142. </dependencies>
  143. <build>
  144. <plugins>
  145. <plugin>
  146. <groupId>org.springframework.boot</groupId>
  147. <artifactId>spring-boot-maven-plugin</artifactId>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-compiler-plugin</artifactId>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-surefire-plugin</artifactId>
  156. <configuration>
  157. <skipTests>true</skipTests>
  158. </configuration>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. </project>