12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?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-web</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>/msweb</contextPath>
- </webAppConfig>
- </configuration>
- </plugin>
- </plugins>
- <finalName>msweb</finalName>
- </build>
- </project>
|