pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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. <groupId>cn.reghao.autodop</groupId>
  7. <artifactId>autodop</artifactId>
  8. <version>1.0.0</version>
  9. <modules>
  10. <module>dmaster</module>
  11. <module>dagent</module>
  12. <module>common</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <name>autodop</name>
  16. <description>autodop</description>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>2.1.5.RELEASE</version>
  21. <relativePath/> <!-- lookup parent from repository -->
  22. </parent>
  23. <properties>
  24. <projOrchestration.build.sourceEncoding>UTF-8</projOrchestration.build.sourceEncoding>
  25. <projOrchestration.reporting.outputEncoding>UTF-8</projOrchestration.reporting.outputEncoding>
  26. <java.version>1.8</java.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-websocket</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-configuration-processor</artifactId>
  45. <optional>true</optional>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.google.code.gson</groupId>
  49. <artifactId>gson</artifactId>
  50. <version>2.8.5</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-aop</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.httpcomponents</groupId>
  58. <artifactId>httpclient</artifactId>
  59. <version>4.5.8</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.httpcomponents</groupId>
  63. <artifactId>httpmime</artifactId>
  64. <version>4.5.8</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <version>1.18.0</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.springfox</groupId>
  74. <artifactId>springfox-swagger2</artifactId>
  75. <version>2.9.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>io.springfox</groupId>
  79. <artifactId>springfox-swagger-ui</artifactId>
  80. <version>2.9.2</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-actuator</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>commons-io</groupId>
  88. <artifactId>commons-io</artifactId>
  89. <version>2.6</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.maven.shared</groupId>
  93. <artifactId>maven-invoker</artifactId>
  94. <version>3.0.1</version>
  95. </dependency>
  96. <!--<dependency>
  97. <groupId>com.spotify</groupId>
  98. <artifactId>docker-client</artifactId>
  99. <version>3.5.12</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.glassfish.hk2</groupId>
  103. <artifactId>hk2-api</artifactId>
  104. <version>2.6.1</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.glassfish.jersey.inject</groupId>
  108. <artifactId>jersey-hk2</artifactId>
  109. <version>2.29.1</version>
  110. </dependency>-->
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-devtools</artifactId>
  114. <optional>true</optional>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>mysql</groupId>
  119. <artifactId>mysql-connector-java</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-data-jpa</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.zaxxer</groupId>
  127. <artifactId>HikariCP</artifactId>
  128. <version>3.3.1</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.jcraft</groupId>
  132. <artifactId>jsch</artifactId>
  133. <version>0.1.55</version>
  134. </dependency>
  135. </dependencies>
  136. </project>