pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example</groupId>
  6. <artifactId>video-activity</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>video-activity</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.15.RELEASE</version>
  15. <relativePath /> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.7</java.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-data-rest</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.mybatis.spring.boot</groupId>
  33. <artifactId>mybatis-spring-boot-starter</artifactId>
  34. <version>1.3.2</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-aop</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-tomcat</artifactId>
  43. <!--<scope>provided</scope>-->
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.oracle</groupId>
  52. <artifactId>ojdbc6</artifactId>
  53. <version>11.2.0.3</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-cache</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>druid-spring-boot-starter</artifactId>
  62. <version>1.1.20</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.ecaop</groupId>
  66. <artifactId>ecaop-client</artifactId>
  67. <version>0.0.2</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
  70. <dependency>
  71. <groupId>commons-httpclient</groupId>
  72. <artifactId>commons-httpclient</artifactId>
  73. <version>3.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-codec</groupId>
  77. <artifactId>commons-codec</artifactId>
  78. <version>1.11</version>
  79. </dependency>
  80. <!-- <dependency>-->
  81. <!-- <groupId>com.alibaba</groupId>-->
  82. <!-- <artifactId>fastjson</artifactId>-->
  83. <!-- <version>1.2.73</version>-->
  84. <!-- </dependency>-->
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>fastjson</artifactId>
  88. <version>1.2.83</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-data-redis</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-lang</groupId>
  96. <artifactId>commons-lang</artifactId>
  97. <version>2.6</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.github.kevinsawicki</groupId>
  101. <artifactId>http-request</artifactId>
  102. <version>6.0</version>
  103. </dependency>
  104. </dependencies>
  105. <!-- <profiles>-->
  106. <!-- <profile>-->
  107. <!-- <id>dev</id>-->
  108. <!-- <properties>-->
  109. <!-- <profiles.active>dev</profiles.active>-->
  110. <!-- </properties>-->
  111. <!-- <activation>-->
  112. <!-- <activeByDefault>true</activeByDefault>-->
  113. <!-- </activation>-->
  114. <!-- </profile>-->
  115. <!-- <profile>-->
  116. <!-- <id>prod</id>-->
  117. <!-- <properties>-->
  118. <!-- <profiles.active>prod</profiles.active>-->
  119. <!-- </properties>-->
  120. <!-- </profile>-->
  121. <!-- <profile>-->
  122. <!-- <id>test</id>-->
  123. <!-- <properties>-->
  124. <!-- <profiles.active>test</profiles.active>-->
  125. <!-- </properties>-->
  126. <!-- </profile>-->
  127. <!-- </profiles>-->
  128. <build>
  129. <!-- <resources>-->
  130. <!-- &lt;!&ndash;<resource>&ndash;&gt;-->
  131. <!-- &lt;!&ndash;<directory>src/main/webapp</directory>&ndash;&gt;-->
  132. <!-- &lt;!&ndash;</resource>&ndash;&gt;-->
  133. <!-- <resource>-->
  134. <!-- <directory>src/main/resources</directory>-->
  135. <!-- <includes>-->
  136. <!-- &lt;!&ndash;<include>application-${profiles.active}.properties</include>-->
  137. <!-- <include>application.properties</include>&ndash;&gt;-->
  138. <!-- <include>**/*.xml</include>-->
  139. <!-- </includes>-->
  140. <!-- <filtering>true</filtering>-->
  141. <!-- </resource>-->
  142. <!-- <resource>-->
  143. <!-- <directory>src/main/java</directory>-->
  144. <!-- <includes>-->
  145. <!-- <include>**/*.xml</include>-->
  146. <!-- </includes>-->
  147. <!-- </resource>-->
  148. <!-- </resources>-->
  149. <plugins>
  150. <plugin>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-maven-plugin</artifactId>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-compiler-plugin</artifactId>
  157. <configuration>
  158. <source>1.7</source>
  159. <target>1.7</target>
  160. </configuration>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-surefire-plugin</artifactId>
  165. <configuration>
  166. <skip>true</skip>
  167. </configuration>
  168. </plugin>
  169. </plugins>
  170. </build>
  171. </project>