pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>1.4.1.RELEASE</version>
  8. </parent>
  9. <groupId>com.uas.report</groupId>
  10. <artifactId>report</artifactId>
  11. <packaging>war</packaging>
  12. <version>0.0.1</version>
  13. <name>report Maven Webapp</name>
  14. <url>http://maven.apache.org</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <springframeword.cloud.version>1.2.1.RELEASE</springframeword.cloud.version>
  18. <oracle.jdbc.version>11.2.0</oracle.jdbc.version>
  19. <servlet.version>3.0-alpha-1</servlet.version>
  20. <druid.version>1.0.24</druid.version>
  21. <jasperreports.version>6.3.0</jasperreports.version>
  22. <poi.version>3.10.1</poi.version>
  23. <commons.fileupload.version>1.3.2</commons.fileupload.version>
  24. <fastjson.version>1.2.15</fastjson.version>
  25. <axis.version>1.4</axis.version>
  26. <commons.discovery.version>0.2</commons.discovery.version>
  27. <barcode4j.version>2.1</barcode4j.version>
  28. <barbecue.version>1.5-beta1</barbecue.version>
  29. <batik.bridge.version>1.8</batik.bridge.version>
  30. <xmlgraphics.version>2.1</xmlgraphics.version>
  31. <mail.version>1.4.7</mail.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-config</artifactId>
  37. <version>${springframeword.cloud.version}</version>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.springframework.security</groupId>
  41. <artifactId>spring-security-crypto</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>org.springframework.security</groupId>
  45. <artifactId>spring-security-rsa</artifactId>
  46. </exclusion>
  47. <exclusion>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>log4j-over-slf4j</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-context-support</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-webmvc</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.aspectj</groupId>
  63. <artifactId>aspectjweaver</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.hibernate</groupId>
  67. <artifactId>hibernate-ehcache</artifactId>
  68. <exclusions>
  69. <exclusion>
  70. <groupId>org.hibernate</groupId>
  71. <artifactId>hibernate-core</artifactId>
  72. </exclusion>
  73. <exclusion>
  74. <groupId>org.jboss.logging</groupId>
  75. <artifactId>jboss-logging</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <dependency>
  80. <groupId>javax.servlet</groupId>
  81. <artifactId>servlet-api</artifactId>
  82. <version>${servlet.version}</version>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>druid</artifactId>
  88. <version>${druid.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>fastjson</artifactId>
  93. <version>${fastjson.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.oracle</groupId>
  97. <artifactId>ojdbc6</artifactId>
  98. <version>${oracle.jdbc.version}</version>
  99. </dependency>
  100. <!-- 打印报表 -->
  101. <dependency>
  102. <groupId>net.sf.jasperreports</groupId>
  103. <artifactId>jasperreports</artifactId>
  104. <version>${jasperreports.version}</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>org.apache.lucene</groupId>
  108. <artifactId>lucene-core</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>org.apache.lucene</groupId>
  112. <artifactId>lucene-analyzers-common</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>org.apache.lucene</groupId>
  116. <artifactId>lucene-queryparser</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>bouncycastle</groupId>
  120. <artifactId>bcprov-jdk14</artifactId>
  121. </exclusion>
  122. <exclusion>
  123. <groupId>org.bouncycastle</groupId>
  124. <artifactId>bctsp-jdk14</artifactId>
  125. </exclusion>
  126. <exclusion>
  127. <groupId>org.eclipse.jdt.core.compiler</groupId>
  128. <artifactId>ecj</artifactId>
  129. </exclusion>
  130. <exclusion>
  131. <groupId>com.ibm.icu</groupId>
  132. <artifactId>icu4j</artifactId>
  133. </exclusion>
  134. <exclusion>
  135. <groupId>org.jfree</groupId>
  136. <artifactId>jcommon</artifactId>
  137. </exclusion>
  138. <exclusion>
  139. <groupId>org.jfree</groupId>
  140. <artifactId>jfreechart</artifactId>
  141. </exclusion>
  142. <exclusion>
  143. <groupId>org.codehaus.castor</groupId>
  144. <artifactId>castor-xml</artifactId>
  145. </exclusion>
  146. <!-- 二维码打印 -->
  147. <!-- <exclusion> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId>
  148. </exclusion> -->
  149. <exclusion>
  150. <groupId>org.olap4j</groupId>
  151. <artifactId>olap4j</artifactId>
  152. </exclusion>
  153. <exclusion>
  154. <groupId>commons-logging</groupId>
  155. <artifactId>commons-logging</artifactId>
  156. </exclusion>
  157. </exclusions>
  158. </dependency>
  159. <dependency>
  160. <groupId>net.sf.jasperreports</groupId>
  161. <artifactId>jasperreports-functions</artifactId>
  162. <version>${jasperreports.version}</version>
  163. </dependency>
  164. <!-- 导出xls报表 -->
  165. <dependency>
  166. <groupId>org.apache.poi</groupId>
  167. <artifactId>poi</artifactId>
  168. <version>${poi.version}</version>
  169. </dependency>
  170. <!-- 自制中文字体 - 微软雅黑 -->
  171. <dependency>
  172. <groupId>com.uas.report</groupId>
  173. <artifactId>msyahei</artifactId>
  174. <version>1.0.0</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.uas.report</groupId>
  178. <artifactId>microsoft-yahei-ui</artifactId>
  179. <version>1.0.0</version>
  180. </dependency>
  181. <!-- 文件上传 -->
  182. <dependency>
  183. <groupId>commons-fileupload</groupId>
  184. <artifactId>commons-fileupload</artifactId>
  185. <version>${commons.fileupload.version}</version>
  186. </dependency>
  187. <!-- HTTP请求 -->
  188. <dependency>
  189. <groupId>org.apache.httpcomponents</groupId>
  190. <artifactId>httpclient</artifactId>
  191. </dependency>
  192. <!-- axis web service -->
  193. <dependency>
  194. <groupId>org.apache.axis</groupId>
  195. <artifactId>axis</artifactId>
  196. <version>${axis.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.apache.axis</groupId>
  200. <artifactId>axis-ant</artifactId>
  201. <version>${axis.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.apache.axis</groupId>
  205. <artifactId>axis-jaxrpc</artifactId>
  206. <version>${axis.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.apache.axis</groupId>
  210. <artifactId>axis-saaj</artifactId>
  211. <version>${axis.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>commons-discovery</groupId>
  215. <artifactId>commons-discovery</artifactId>
  216. <version>${commons.discovery.version}</version>
  217. <exclusions>
  218. <exclusion>
  219. <groupId>commons-logging</groupId>
  220. <artifactId>commons-logging</artifactId>
  221. </exclusion>
  222. </exclusions>
  223. </dependency>
  224. <dependency>
  225. <groupId>wsdl4j</groupId>
  226. <artifactId>wsdl4j</artifactId>
  227. </dependency>
  228. <!-- dom4j -->
  229. <dependency>
  230. <groupId>dom4j</groupId>
  231. <artifactId>dom4j</artifactId>
  232. </dependency>
  233. <dependency>
  234. <groupId>jaxen</groupId>
  235. <artifactId>jaxen</artifactId>
  236. </dependency>
  237. <!-- 打印条形码 -->
  238. <dependency>
  239. <groupId>net.sf.barcode4j</groupId>
  240. <artifactId>barcode4j</artifactId>
  241. <version>${barcode4j.version}</version>
  242. <exclusions>
  243. <exclusion>
  244. <groupId>org.apache.ant</groupId>
  245. <artifactId>ant</artifactId>
  246. </exclusion>
  247. <exclusion>
  248. <groupId>commons-cli</groupId>
  249. <artifactId>commons-cli</artifactId>
  250. </exclusion>
  251. </exclusions>
  252. </dependency>
  253. <dependency>
  254. <groupId>net.sourceforge.barbecue</groupId>
  255. <artifactId>barbecue</artifactId>
  256. <version>${barbecue.version}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.codehaus.groovy</groupId>
  260. <artifactId>groovy-all</artifactId>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.xmlgraphics</groupId>
  264. <artifactId>batik-bridge</artifactId>
  265. <version>${batik.bridge.version}</version>
  266. <exclusions>
  267. <exclusion>
  268. <groupId>xalan</groupId>
  269. <artifactId>xalan</artifactId>
  270. </exclusion>
  271. </exclusions>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.apache.xmlgraphics</groupId>
  275. <artifactId>xmlgraphics-commons</artifactId>
  276. <version>${xmlgraphics.version}</version>
  277. <exclusions>
  278. <exclusion>
  279. <groupId>commons-logging</groupId>
  280. <artifactId>commons-logging</artifactId>
  281. </exclusion>
  282. </exclusions>
  283. </dependency>
  284. </dependencies>
  285. <build>
  286. <plugins>
  287. <plugin>
  288. <groupId>org.apache.maven.plugins</groupId>
  289. <artifactId>maven-compiler-plugin</artifactId>
  290. <configuration>
  291. <encoding>${project.build.sourceEncoding}</encoding>
  292. <source>1.7</source>
  293. <target>1.7</target>
  294. </configuration>
  295. </plugin>
  296. </plugins>
  297. </build>
  298. <distributionManagement>
  299. <!-- 发布release仓库 -->
  300. <repository>
  301. <id>platform-release</id>
  302. <name>platform-release</name>
  303. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  304. </repository>
  305. <!-- 发布快照版本 -->
  306. <snapshotRepository>
  307. <id>platform-snapshots</id>
  308. <name>platform-snapshots</name>
  309. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  310. </snapshotRepository>
  311. </distributionManagement>
  312. </project>