pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>1.5.10.RELEASE</version>
  10. </parent>
  11. <groupId>com.genersoft</groupId>
  12. <artifactId>wvp</artifactId>
  13. <name>web video platform</name>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <hystrix.version>1.5.12</hystrix.version>
  17. <!-- 依赖版本 -->
  18. <mapper.version>3.4.0</mapper.version>
  19. <mybatis.version>3.3.1</mybatis.version>
  20. <mybatis.spring.version>1.2.4</mybatis.spring.version>
  21. <pagehelper.version>4.1.1</pagehelper.version>
  22. <snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
  23. <asciidoctor.input.directory>${project.basedir}/docs/asciidoc</asciidoctor.input.directory>
  24. <generated.asciidoc.directory>${project.build.directory}/asciidoc</generated.asciidoc.directory>
  25. <asciidoctor.html.output.directory>${project.build.directory}/asciidoc/html</asciidoctor.html.output.directory>
  26. <asciidoctor.pdf.output.directory>${project.build.directory}/asciidoc/pdf</asciidoctor.pdf.output.directory>
  27. <gson.version>2.8.0</gson.version>
  28. <jedis.version>3.0.1</jedis.version>
  29. <jsonlib.version>2.4</jsonlib.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-jdbc</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-tomcat</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-web</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-context</artifactId>
  47. </dependency>
  48. <!-- druid -->
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>druid</artifactId>
  52. <version>1.0.11</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>mysql</groupId>
  56. <artifactId>mysql-connector-java</artifactId>
  57. <version>5.1.30</version>
  58. </dependency>
  59. <!--Mybatis -->
  60. <dependency>
  61. <groupId>org.mybatis</groupId>
  62. <artifactId>mybatis</artifactId>
  63. <version>${mybatis.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis</groupId>
  67. <artifactId>mybatis-spring</artifactId>
  68. <version>${mybatis.spring.version}</version>
  69. </dependency>
  70. <!--分页插件 -->
  71. <dependency>
  72. <groupId>com.github.pagehelper</groupId>
  73. <artifactId>pagehelper</artifactId>
  74. <version>${pagehelper.version}</version>
  75. </dependency>
  76. <!--通用Mapper -->
  77. <dependency>
  78. <groupId>tk.mybatis</groupId>
  79. <artifactId>mapper</artifactId>
  80. <version>${mapper.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-lang3</artifactId>
  85. <version>3.4</version>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>fastjson</artifactId>
  91. <version>1.2.33</version>
  92. </dependency>
  93. <!--Swagger2 -->
  94. <!--在线文档 -->
  95. <dependency>
  96. <groupId>io.springfox</groupId>
  97. <artifactId>springfox-swagger2</artifactId>
  98. <version>2.6.1</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.springfox</groupId>
  102. <artifactId>springfox-swagger-ui</artifactId>
  103. <version>2.6.1</version>
  104. </dependency>
  105. <!-- 日志相关 -->
  106. <dependency>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-aop</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>javax.sip</groupId>
  112. <artifactId>jain-sip-ri</artifactId>
  113. <version>1.3.0-92</version>
  114. <!-- <scope>system</scope>
  115. <systemPath>${project.basedir}/libs/jain-sip-ri-1.3.0-91.jar</systemPath> -->
  116. </dependency>
  117. <dependency>
  118. <groupId>org.dom4j</groupId>
  119. <artifactId>dom4j</artifactId>
  120. <version>2.1.3</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.google.code.gson</groupId>
  124. <artifactId>gson</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.data</groupId>
  128. <artifactId>spring-data-redis</artifactId>
  129. <version>1.8.4.RELEASE</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>redis.clients</groupId>
  133. <artifactId>jedis</artifactId>
  134. <version>2.9.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.google.guava</groupId>
  138. <artifactId>guava</artifactId>
  139. <version>18.0</version>
  140. </dependency>
  141. <!-- okhttp -->
  142. <dependency>
  143. <groupId>com.squareup.okhttp3</groupId>
  144. <artifactId>okhttp</artifactId>
  145. <version>4.9.0</version>
  146. </dependency>
  147. </dependencies>
  148. <build>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-maven-plugin</artifactId>
  153. <configuration>
  154. <includeSystemScope>true</includeSystemScope>
  155. </configuration>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.apache.maven.plugins</groupId>
  159. <artifactId>maven-compiler-plugin</artifactId>
  160. <configuration>
  161. <source>1.8</source>
  162. <target>1.8</target>
  163. </configuration>
  164. </plugin>
  165. <plugin>
  166. <groupId>org.apache.maven.plugins</groupId>
  167. <artifactId>maven-surefire-plugin</artifactId>
  168. </plugin>
  169. </plugins>
  170. </build>
  171. </project>