pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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. <parent>
  5. <groupId>cn.vbdsm</groupId>
  6. <artifactId>vbdsm-web</artifactId>
  7. <version>2.1.0</version>
  8. </parent>
  9. <artifactId>vbdsm-powerservice</artifactId>
  10. <name>${project.artifactId}</name>
  11. <packaging>war</packaging>
  12. <properties>
  13. <poi.version>3.9</poi.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.apache.poi</groupId>
  18. <artifactId>poi</artifactId>
  19. <version>${poi.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.poi</groupId>
  23. <artifactId>poi-ooxml</artifactId>
  24. <version>${poi.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.poi</groupId>
  28. <artifactId>poi-scratchpad</artifactId>
  29. <version>${poi.version}</version>
  30. </dependency>
  31. <!-- spring framework start -->
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <!-- spring framework end -->
  38. <dependency>
  39. <groupId>javax.servlet</groupId>
  40. <artifactId>servlet-api</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.vbdsm</groupId>
  45. <artifactId>vbdsm-base</artifactId>
  46. </dependency>
  47. <!-- vbdsm jars end -->
  48. <!-- <dependency>-->
  49. <!-- <groupId>org.quartz-scheduler</groupId>-->
  50. <!-- <artifactId>quartz</artifactId>-->
  51. <!-- <version>1.8.6</version>-->
  52. <!-- </dependency>-->
  53. <!-- Hight Charts Export Images Rely On Package add by grxie begin-->
  54. <dependency>
  55. <groupId>batik</groupId>
  56. <artifactId>batik-all</artifactId>
  57. <version>1.7</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>pdf-transcoder</groupId>
  61. <artifactId>pdf-transcoder</artifactId>
  62. <version>1.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>xalan</groupId>
  66. <artifactId>xalan</artifactId>
  67. <version>2.7.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>xerces</groupId>
  71. <artifactId>xercesImpl</artifactId>
  72. <version>2.9.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>xml-apis</groupId>
  76. <artifactId>xml-apis-ext</artifactId>
  77. <version>1.3.04</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>xml-apis</groupId>
  81. <artifactId>xml-apis</artifactId>
  82. <version>1.3.04</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>xmlgraphics</groupId>
  86. <artifactId>xmlgraphics-commons</artifactId>
  87. <version>1.4</version>
  88. </dependency>
  89. <!-- Hight Charts Export Images Rely On Package add by grxie end-->
  90. <!-- Hight Charts Export Images To WORD And PDF Rely On Package add by grxie begin-->
  91. <dependency>
  92. <groupId>lowagie</groupId>
  93. <artifactId>com.lowagie</artifactId>
  94. <version>2.1.7</version>
  95. </dependency>
  96. <!-- Hight Charts Export Images To WORD And PDF Rely On Package add by grxie end-->
  97. <dependency>
  98. <groupId>org.quartz-scheduler</groupId>
  99. <artifactId>quartz</artifactId>
  100. <version>1.8.6</version>
  101. </dependency>
  102. </dependencies>
  103. <build>
  104. <finalName>ROOT</finalName>
  105. <resources>
  106. <resource>
  107. <directory>${basedir}/src/main/imp_exp_templats</directory>
  108. <includes>
  109. <include>**/*</include>
  110. </includes>
  111. </resource>
  112. </resources>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.mortbay.jetty</groupId>
  116. <artifactId>maven-jetty-plugin</artifactId>
  117. <configuration>
  118. <webDefaultXml>src/main/resources/webdefault.xml</webDefaultXml>
  119. <contextPath>/</contextPath>
  120. <connectors>
  121. <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
  122. <port>7083</port>
  123. </connector>
  124. </connectors>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>