pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.qhtx.eta</groupId>
  8. <artifactId>qhtx-eta-integrator</artifactId>
  9. <version>1.0.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>qhtx-integrator-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. <version>2.4.2</version>
  17. <exclusions>
  18. <exclusion>
  19. <artifactId>spring-boot-starter-logging</artifactId>
  20. <groupId>org.springframework.boot</groupId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <!--spring cloud 启动类-->
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.qhtx.eta</groupId>
  31. <artifactId>qhtx-integrator-application</artifactId>
  32. <version>${project.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <version>4.13.2</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <version>2.4.2</version>
  44. <scope>test</scope>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <finalName>${project.artifactId}</finalName>
  49. <!--打包成jar包时的名字-->
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. <version>2.3.0.RELEASE</version>
  55. <executions>
  56. <execution>
  57. <goals>
  58. <goal>repackage</goal>
  59. </goals>
  60. </execution>
  61. </executions>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>