pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.hfln.device</groupId>
  6. <artifactId>hfln-device-service</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <artifactId>device-service-application</artifactId>
  11. <packaging>jar</packaging>
  12. <name>device-service-application</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.hfln.device</groupId>
  16. <artifactId>device-service-client-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.hfln.framework</groupId>
  20. <artifactId>hfln-framework-dto</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.hfln.device</groupId>
  24. <artifactId>device-service-domain</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.hfln.framework</groupId>
  28. <artifactId>hfln-framework-exception</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hfln.framework</groupId>
  32. <artifactId>hfln-framework-catchlog-starter</artifactId>
  33. </dependency>
  34. <!-- JSR 303 Validation -->
  35. <dependency>
  36. <groupId>org.hibernate.validator</groupId>
  37. <artifactId>hibernate-validator</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>javax.el</groupId>
  41. <artifactId>javax.el-api</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.glassfish.web</groupId>
  45. <artifactId>javax.el</artifactId>
  46. </dependency>
  47. <!-- JSR 303 Validation End-->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. </dependency>
  52. <!-- 测试依赖 -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-test</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.junit.jupiter</groupId>
  60. <artifactId>junit-jupiter-api</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.junit.jupiter</groupId>
  65. <artifactId>junit-jupiter-engine</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.mockito</groupId>
  70. <artifactId>mockito-core</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mockito</groupId>
  75. <artifactId>mockito-junit-jupiter</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <pluginManagement>
  81. <plugins>
  82. <plugin>
  83. <artifactId>maven-deploy-plugin</artifactId>
  84. <configuration>
  85. <skip>true</skip>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </pluginManagement>
  90. </build>
  91. </project>