pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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>sms</artifactId>
  7. <groupId>com.usoftchina.smartschool</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.usoftchina.smartschool</groupId>
  12. <artifactId>sms-server</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.usoftchina.smartschool</groupId>
  17. <artifactId>server-starter</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.usoftchina.smartschool</groupId>
  21. <artifactId>core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.usoftchina.smartschool</groupId>
  25. <artifactId>sms-dto</artifactId>
  26. <version>1.0.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.usoftchina.smartschool</groupId>
  30. <artifactId>sms-api</artifactId>
  31. <version>1.0.0-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.hibernate</groupId>
  39. <artifactId>hibernate-validator</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>org.apache.tomcat.embed</groupId>
  43. <artifactId>tomcat-embed-websocket</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.cloud</groupId>
  49. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.amqp</groupId>
  53. <artifactId>spring-rabbit</artifactId>
  54. </dependency>
  55. <!-- api doc -->
  56. <dependency>
  57. <groupId>io.springfox</groupId>
  58. <artifactId>springfox-swagger-ui</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.springfox</groupId>
  62. <artifactId>springfox-swagger2</artifactId>
  63. </dependency>
  64. <!-- aliyun sms SDK -->
  65. <dependency>
  66. <groupId>com.aliyun</groupId>
  67. <artifactId>aliyun-java-sdk-core</artifactId>
  68. <version>4.0.6</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.aliyun</groupId>
  72. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  73. <version>1.1.0</version>
  74. </dependency>
  75. <!-- Test -->
  76. <dependency>
  77. <groupId>junit</groupId>
  78. <artifactId>junit</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-test</artifactId>
  84. <scope>test</scope>
  85. </dependency>
  86. </dependencies>
  87. <build>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. </plugin>
  93. <plugin>
  94. <groupId>com.spotify</groupId>
  95. <artifactId>docker-maven-plugin</artifactId>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>