pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.dashitech</groupId>
  5. <artifactId>HSMSV1-DataMigration</artifactId>
  6. <version>1.0.0</version>
  7. <packaging>jar</packaging>
  8. <name>HSMSV1-DataMigration</name>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>1.5.8.RELEASE</version>
  13. <relativePath />
  14. </parent>
  15. <!-- <artifactId>spring-boot-starter-logging</artifactId>
  16. <name>Spring Boot Logging Starter</name>
  17. <description>Starter for logging using Logback. Default logging starter</description>
  18. <url>http://projects.spring.io/spring-boot/</url>-->
  19. <properties>
  20. <tomcat.version>7.0.59</tomcat.version>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <java.version>1.8</java.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-aop</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-devtools</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-lang3</artifactId>
  46. <version>3.3.2</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.sf.json-lib</groupId>
  50. <artifactId>json-lib</artifactId>
  51. <version>2.4</version>
  52. <classifier>jdk15</classifier>
  53. </dependency>
  54. <dependency>
  55. <groupId>commons-httpclient</groupId>
  56. <artifactId>commons-httpclient</artifactId>
  57. <version>3.0.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpmime</artifactId>
  62. <version>4.3.4</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-context-support</artifactId>
  67. <version>4.2.4.RELEASE</version>
  68. </dependency>
  69. <!-- db -->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-data-jpa</artifactId>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>javax.transaction</groupId>
  76. <artifactId>javax.transaction-api</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.jboss.spec.javax.transaction</groupId>
  82. <artifactId>jboss-transaction-api_1.2_spec</artifactId>
  83. <version>1.0.0.Final</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.hibernate</groupId>
  87. <artifactId>hibernate-entitymanager</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>druid</artifactId>
  92. <version>1.0.18</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.alibaba</groupId>
  96. <artifactId>fastjson</artifactId>
  97. <version>1.2.83</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>mysql</groupId>
  101. <artifactId>mysql-connector-java</artifactId>
  102. <version>5.1.34</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.microsoft.sqlserver</groupId>
  106. <artifactId>sqljdbc4</artifactId>
  107. <version>4.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>redis.clients</groupId>
  111. <artifactId>jedis</artifactId>
  112. <version>2.9.0</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.atmosphere</groupId>
  116. <artifactId>atmosphere-runtime</artifactId>
  117. <version>2.4.28</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.jboss.netty</groupId>
  121. <artifactId>netty</artifactId>
  122. <version>3.2.5.Final</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.belerweb</groupId>
  126. <artifactId>pinyin4j</artifactId>
  127. <version>2.5.0</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.oracle.database.jdbc</groupId>
  131. <artifactId>ojdbc8</artifactId>
  132. <version>12.2.0.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-autoconfigure</artifactId>
  137. <scope>compile</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-configuration-processor</artifactId>
  142. <scope>compile</scope>
  143. </dependency>
  144. </dependencies>
  145. <build>
  146. <plugins>
  147. <plugin>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-maven-plugin</artifactId>
  150. <executions>
  151. <execution>
  152. <goals>
  153. <goal>repackage</goal>
  154. </goals>
  155. </execution>
  156. </executions>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. <repositories>
  161. <repository>
  162. <id>clojars</id>
  163. <url>http://clojars.org/repo/</url>
  164. </repository>
  165. </repositories>
  166. </project>