| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.vbdsm</groupId>
- <artifactId>vbdsm-web</artifactId>
- <version>2.1.0</version>
- </parent>
- <packaging>war</packaging>
- <artifactId>vbdsm-charts</artifactId>
- <properties>
- <javacc.version>4.1</javacc.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>javacc</groupId>
- <artifactId>javacc</artifactId>
- <version>${javacc.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>bouncycastle</groupId>
- <artifactId>bouncycastle-jce-jdk13</artifactId>
- <version>112</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>cn.vbdsm</groupId>
- <artifactId>vbdsm-base</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <version>${spring.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>batik</groupId>
- <artifactId>batik-all</artifactId>
- <version>1.7</version>
- </dependency>
- <dependency>
- <groupId>pdf-transcoder</groupId>
- <artifactId>pdf-transcoder</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.0</version>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>org-apache-xerces</artifactId>
- <version>2.5.0</version>
- </dependency>
- <dependency>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis-ext</artifactId>
- <version>1.3.04</version>
- </dependency>
- <dependency>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- <version>1.3.04</version>
- </dependency>
- <dependency>
- <groupId>xmlgraphics</groupId>
- <artifactId>xmlgraphics-commons</artifactId>
- <version>1.4</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>ROOT</finalName>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <configuration>
- <webDefaultXml>src/main/resources/webdefault.xml</webDefaultXml>
- <contextPath>/</contextPath>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>7087</port>
- </connector>
- </connectors>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|