| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <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>
- <artifactId>vbdsm-powerservice</artifactId>
- <name>${project.artifactId}</name>
- <packaging>war</packaging>
- <properties>
- <poi.version>3.9</poi.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-scratchpad</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <!-- spring framework start -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- spring framework end -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>cn.vbdsm</groupId>
- <artifactId>vbdsm-base</artifactId>
- </dependency>
- <!-- vbdsm jars end -->
- <!-- <dependency>-->
- <!-- <groupId>org.quartz-scheduler</groupId>-->
- <!-- <artifactId>quartz</artifactId>-->
- <!-- <version>1.8.6</version>-->
- <!-- </dependency>-->
- <!-- Hight Charts Export Images Rely On Package add by grxie begin-->
- <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>xercesImpl</artifactId>
- <version>2.9.1</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>
- <!-- Hight Charts Export Images Rely On Package add by grxie end-->
- <!-- Hight Charts Export Images To WORD And PDF Rely On Package add by grxie begin-->
- <dependency>
- <groupId>lowagie</groupId>
- <artifactId>com.lowagie</artifactId>
- <version>2.1.7</version>
- </dependency>
- <!-- Hight Charts Export Images To WORD And PDF Rely On Package add by grxie end-->
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <version>1.8.6</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>ROOT</finalName>
- <resources>
- <resource>
- <directory>${basedir}/src/main/resources</directory>
- <includes>
- <include>**/*</include>
- </includes>
- </resource>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <excludes>
- <exclude>**/*.java</exclude>
- <exclude>**/*.class</exclude>
- </excludes>
- </resource>
- <resource>
- <directory>${basedir}/src/main/imp_exp_templats</directory>
- <includes>
- <include>**/*</include>
- </includes>
- </resource>
- </resources>
- <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>7083</port>
- </connector>
- </connectors>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|