医疗信息共享平台后台管理系统

pom.xml 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <groupId>com.ekexiu</groupId>
  7. <artifactId>medical-share-console</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>war</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.7</maven.compiler.source>
  13. <maven.compiler.target>1.7</maven.compiler.target>
  14. <maven.war.filteringDeploymentDescriptors>true</maven.war.filteringDeploymentDescriptors>
  15. <maven.tomcat.path>/</maven.tomcat.path>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.postgresql</groupId>
  20. <artifactId>postgresql</artifactId>
  21. <version>9.4.1207.jre7</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jfw</groupId>
  25. <artifactId>jfwApt</artifactId>
  26. <version>0.0.2-SNAPSHOT</version>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.jfw</groupId>
  31. <artifactId>jfwAptOrm</artifactId>
  32. <version>0.0.2-SNAPSHOT</version>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jfw</groupId>
  37. <artifactId>jfwAptWeb</artifactId>
  38. <version>0.0.2-SNAPSHOT</version>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.jfw</groupId>
  43. <artifactId>jfwUtil</artifactId>
  44. <version>0.0.2-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.jfw</groupId>
  48. <artifactId>jfwWebUtil</artifactId>
  49. <version>0.0.2-SNAPSHOT</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>javax.servlet</groupId>
  53. <artifactId>servlet-api</artifactId>
  54. <scope>provided</scope>
  55. <version>2.5</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>druid</artifactId>
  60. <version>1.0.20</version>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.mortbay.jetty</groupId>
  67. <artifactId>jetty-maven-plugin</artifactId>
  68. <version>8.1.0.RC5</version>
  69. <configuration>
  70. <stopPort>9966</stopPort>
  71. <stopKey>foo</stopKey>
  72. <webAppConfig>
  73. <contextPath>/msconsole</contextPath>
  74. </webAppConfig>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. <finalName>msconsole</finalName>
  79. </build>
  80. </project>