pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.vbdsm</groupId>
  8. <artifactId>vbdsm-web</artifactId>
  9. <version>2.1.0</version>
  10. </parent>
  11. <packaging>war</packaging>
  12. <artifactId>vbdsm-charts</artifactId>
  13. <properties>
  14. <javacc.version>4.1</javacc.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>javacc</groupId>
  19. <artifactId>javacc</artifactId>
  20. <version>${javacc.version}</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>bouncycastle</groupId>
  25. <artifactId>bouncycastle-jce-jdk13</artifactId>
  26. <version>112</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.servlet</groupId>
  30. <artifactId>servlet-api</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.vbdsm</groupId>
  35. <artifactId>vbdsm-base</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-test</artifactId>
  40. <version>${spring.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>batik</groupId>
  45. <artifactId>batik-all</artifactId>
  46. <version>1.7</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>pdf-transcoder</groupId>
  50. <artifactId>pdf-transcoder</artifactId>
  51. <version>1.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>xalan</groupId>
  55. <artifactId>xalan</artifactId>
  56. <version>2.7.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>xerces</groupId>
  60. <artifactId>org-apache-xerces</artifactId>
  61. <version>2.5.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>xml-apis</groupId>
  65. <artifactId>xml-apis-ext</artifactId>
  66. <version>1.3.04</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>xml-apis</groupId>
  70. <artifactId>xml-apis</artifactId>
  71. <version>1.3.04</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>xmlgraphics</groupId>
  75. <artifactId>xmlgraphics-commons</artifactId>
  76. <version>1.4</version>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <finalName>ROOT</finalName>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.mortbay.jetty</groupId>
  84. <artifactId>maven-jetty-plugin</artifactId>
  85. <configuration>
  86. <webDefaultXml>src/main/resources/webdefault.xml</webDefaultXml>
  87. <contextPath>/</contextPath>
  88. <connectors>
  89. <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
  90. <port>7087</port>
  91. </connector>
  92. </connectors>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>