123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- 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>
- <groupId>com.ekexiu</groupId>
- <artifactId>medical-share-console</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>war</packaging>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.7</maven.compiler.source>
- <maven.compiler.target>1.7</maven.compiler.target>
- <maven.war.filteringDeploymentDescriptors>true</maven.war.filteringDeploymentDescriptors>
- <maven.tomcat.path>/</maven.tomcat.path>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>9.4.1207.jre7</version>
- </dependency>
- <dependency>
- <groupId>org.jfw</groupId>
- <artifactId>jfwApt</artifactId>
- <version>0.0.2-SNAPSHOT</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.jfw</groupId>
- <artifactId>jfwAptOrm</artifactId>
- <version>0.0.2-SNAPSHOT</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.jfw</groupId>
- <artifactId>jfwAptWeb</artifactId>
- <version>0.0.2-SNAPSHOT</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.jfw</groupId>
- <artifactId>jfwUtil</artifactId>
- <version>0.0.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.jfw</groupId>
- <artifactId>jfwWebUtil</artifactId>
- <version>0.0.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- <version>2.5</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.0.20</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- <version>8.1.0.RC5</version>
- <configuration>
- <stopPort>9966</stopPort>
- <stopKey>foo</stopKey>
- <webAppConfig>
- <contextPath>/msconsole</contextPath>
- </webAppConfig>
- </configuration>
- </plugin>
- </plugins>
- <finalName>msconsole</finalName>
- </build>
- </project>
|