Няма описание

pom.xml 2.5KB

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