pom.xml 10 KB

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