pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.hfln.device</groupId>
  7. <artifactId>hfln-device-service</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>device-service-server</artifactId>
  12. <packaging>jar</packaging>
  13. <name>device-service-server</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.hfln.device</groupId>
  17. <artifactId>device-service-application</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.hfln.device</groupId>
  21. <artifactId>device-service-infrastructure</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.alibaba.cloud</groupId>
  34. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-starter-openfeign</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba.cloud</groupId>
  42. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>ch.qos.logback</groupId>
  46. <artifactId>logback-classic</artifactId>
  47. <scope>runtime</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>ch.qos.logback</groupId>
  51. <artifactId>logback-core</artifactId>
  52. <scope>runtime</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>druid-spring-boot-starter</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>cn.hfln.framework</groupId>
  60. <artifactId>knife4j-doc-spring-boot-starter</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.codehaus.janino</groupId>
  64. <artifactId>janino</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-actuator</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <finalName>device-service</finalName>
  73. <plugins>
  74. <!-- Compiler plugin uses parent properties -->
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <version>3.10.0</version>
  79. <configuration>
  80. <source>${maven.compiler.source}</source>
  81. <target>${maven.compiler.target}</target>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. <executions>
  88. <execution>
  89. <goals>
  90. <goal>repackage</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. <configuration>
  95. <classifier>boot</classifier>
  96. <mainClass>com.hfln.device.server.DeviceApplication</mainClass>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>