pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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.sckw</groupId>
  8. <artifactId>slope-modules</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>slope-detection</artifactId>
  12. <description>边坡检测模块</description>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <!-- 核心模块 -->
  20. <dependency>
  21. <groupId>com.sckw</groupId>
  22. <artifactId>slope-common-startup</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sckw</groupId>
  27. <artifactId>slope-common-core</artifactId>
  28. <version>1.0.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.sckw</groupId>
  32. <artifactId>slope-common-remote</artifactId>
  33. <version>1.0.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.sckw</groupId>
  37. <artifactId>slope-common-datasource</artifactId>
  38. <version>1.0.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.sckw</groupId>
  42. <artifactId>slope-common-redis</artifactId>
  43. <version>1.0.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.sckw</groupId>
  47. <artifactId>slope-common-excel</artifactId>
  48. <version>1.0.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.sckw</groupId>
  52. <artifactId>slope-common-tdengine</artifactId>
  53. <version>1.0.0</version>
  54. </dependency>
  55. <!-- validation -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-validation</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.sckw</groupId>
  62. <artifactId>slope-common-log</artifactId>
  63. <version>1.0.0</version>
  64. </dependency>
  65. </dependencies>
  66. <!--在build中配置resources,来防止我们资源导出失败的问题-->
  67. <build>
  68. <resources>
  69. <resource>
  70. <directory>src/main/resources</directory>
  71. <includes>
  72. <include>**/*.properties</include>
  73. <include>**/*.xml</include>
  74. </includes>
  75. <filtering>true</filtering>
  76. </resource>
  77. <resource>
  78. <directory>src/main/java</directory>
  79. <includes>
  80. <include>**/*.properties</include>
  81. <include>**/*.xml</include>
  82. </includes>
  83. <filtering>true</filtering>
  84. </resource>
  85. </resources>
  86. </build>
  87. </project>