pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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>com.llisoft</groupId>
  7. <artifactId>mta-service-sms</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.0.3.RELEASE</version>
  14. <relativePath />
  15. </parent>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-data-redis</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-mail</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>de.codecentric</groupId>
  41. <artifactId>spring-boot-admin-starter-client</artifactId>
  42. <version>2.0.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.aliyun</groupId>
  46. <artifactId>aliyun-java-sdk-core</artifactId>
  47. <version>4.4.2</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.aliyun</groupId>
  51. <artifactId>aliyun-java-sdk-afs</artifactId>
  52. <version>1.0.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.springfox</groupId>
  56. <artifactId>springfox-swagger2</artifactId>
  57. <version>2.7.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.springfox</groupId>
  61. <artifactId>springfox-swagger-ui</artifactId>
  62. <version>2.7.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.llisoft</groupId>
  66. <artifactId>mta-common</artifactId>
  67. <version>0.0.1-SNAPSHOT</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-test</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-devtools</artifactId>
  77. <optional>true</optional>
  78. </dependency>
  79. </dependencies>
  80. <dependencyManagement>
  81. <dependencies>
  82. <dependency>
  83. <groupId>org.springframework.cloud</groupId>
  84. <artifactId>spring-cloud-dependencies</artifactId>
  85. <version>${spring-cloud.version}</version>
  86. <type>pom</type>
  87. <scope>import</scope>
  88. </dependency>
  89. </dependencies>
  90. </dependencyManagement>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-surefire-plugin</artifactId>
  100. <configuration>
  101. <skipTests>true</skipTests>
  102. </configuration>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>