pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <parent>
  6. <artifactId>hfln-device-service</artifactId>
  7. <groupId>com.hfln.device</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>device-service-common</artifactId>
  12. <properties>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-web</artifactId>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.hfln.framework</groupId>
  24. <artifactId>hfln-framework-dto</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.baomidou</groupId>
  28. <artifactId>mybatis-plus-boot-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>easyexcel</artifactId>
  33. </dependency>
  34. <!-- Alibaba Fastjson -->
  35. <dependency>
  36. <groupId>com.alibaba.fastjson2</groupId>
  37. <artifactId>fastjson2</artifactId>
  38. </dependency>
  39. <!-- Testing dependencies -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.junit.jupiter</groupId>
  47. <artifactId>junit-jupiter-api</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.junit.jupiter</groupId>
  52. <artifactId>junit-jupiter-engine</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-source-plugin</artifactId>
  61. <executions>
  62. <execution>
  63. <id>attach-sources</id>
  64. <goals>
  65. <goal>jar</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. <!-- Surefire plugin for running tests -->
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-surefire-plugin</artifactId>
  74. <version>2.22.2</version>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>