pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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>monitor</artifactId>
  7. <groupId>com.usthe.tancloud</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>manager</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <mysql.version>8.0.16</mysql.version>
  15. <snake.yaml.version>1.26</snake.yaml.version>
  16. </properties>
  17. <dependencies>
  18. <!-- common -->
  19. <dependency>
  20. <groupId>com.usthe.tancloud</groupId>
  21. <artifactId>common</artifactId>
  22. <version>1.0</version>
  23. </dependency>
  24. <!-- data warehouse -->
  25. <dependency>
  26. <groupId>com.usthe.tancloud</groupId>
  27. <artifactId>warehouse</artifactId>
  28. <version>1.0</version>
  29. </dependency>
  30. <!-- alerter -->
  31. <dependency>
  32. <groupId>com.usthe.tancloud</groupId>
  33. <artifactId>alerter</artifactId>
  34. <version>1.0</version>
  35. </dependency>
  36. <!-- collector -->
  37. <dependency>
  38. <groupId>com.usthe.tancloud</groupId>
  39. <artifactId>collector</artifactId>
  40. <version>1.0</version>
  41. </dependency>
  42. <!-- spring -->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-web</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-configuration-processor</artifactId>
  50. <optional>true</optional>
  51. </dependency>
  52. <!--thymeleaf依赖-->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>net.sourceforge.nekohtml</groupId>
  59. <artifactId>nekohtml</artifactId>
  60. <version>1.9.22</version>
  61. </dependency>
  62. <!-- data jdbc -->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-jdbc</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-data-jpa</artifactId>
  70. </dependency>
  71. <!-- mysql -->
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. <version>${mysql.version}</version>
  76. <!--<scope>runtime</scope>-->
  77. </dependency>
  78. <!-- email -->
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-mail</artifactId>
  82. </dependency>
  83. <!-- swagger -->
  84. <dependency>
  85. <groupId>io.springfox</groupId>
  86. <artifactId>springfox-boot-starter</artifactId>
  87. </dependency>
  88. <!-- yaml file load -->
  89. <dependency>
  90. <groupId>org.yaml</groupId>
  91. <artifactId>snakeyaml</artifactId>
  92. <version>${snake.yaml.version}</version>
  93. </dependency>
  94. <!-- validation -->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-validation</artifactId>
  98. </dependency>
  99. <!--sureness-->
  100. <dependency>
  101. <groupId>com.usthe.sureness</groupId>
  102. <artifactId>spring-boot-starter-sureness</artifactId>
  103. <version>1.0.7</version>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>com.maplecloudy.osrt</groupId>
  110. <artifactId>maplecloudy-osrt-maven-plugin</artifactId>
  111. <version>1.0.0-RELEASE</version>
  112. <executions>
  113. <execution>
  114. <goals>
  115. <goal>repackage</goal>
  116. <goal>install-osrt-app</goal>
  117. </goals>
  118. </execution>
  119. </executions>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>