pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  3. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.com.qmth.stmms</groupId>
  7. <artifactId>stmms-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cn.com.qmth.stmms</groupId>
  11. <artifactId>stmms-web</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <packaging>war</packaging>
  14. <name>stmms-web</name>
  15. <url>http://maven.apache.org</url>
  16. <dependencies>
  17. <dependency>
  18. <groupId>cn.com.qmth.stmms</groupId>
  19. <artifactId>stmms-biz</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-webmvc</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>commons-io</groupId>
  27. <artifactId>commons-io</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>jstl</groupId>
  31. <artifactId>jstl</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mortbay.jetty</groupId>
  35. <artifactId>jetty</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.servlet</groupId>
  39. <artifactId>javax.servlet-api</artifactId>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.validation</groupId>
  44. <artifactId>validation-api</artifactId>
  45. <version>1.1.0.Final</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.hibernate</groupId>
  49. <artifactId>hibernate-validator</artifactId>
  50. <version>5.0.1.Final</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>javax.servlet.jsp</groupId>
  54. <artifactId>jsp-api</artifactId>
  55. <version>2.1</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>opensymphony</groupId>
  60. <artifactId>sitemesh</artifactId>
  61. <version>2.4.2</version>
  62. <scope>runtime</scope>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.mortbay.jetty</groupId>
  69. <artifactId>jetty-maven-plugin</artifactId>
  70. <configuration>
  71. <webApp>
  72. <contextPath>/</contextPath>
  73. </webApp>
  74. <connectors>
  75. <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
  76. <port>8090</port>
  77. <maxIdleTime>60000</maxIdleTime>
  78. </connector>
  79. </connectors>
  80. <systemProperties>
  81. <systemProperty>
  82. <name>catalina.home</name>
  83. <value>/Users/luoshi/develop/data/stmms-ft</value>
  84. </systemProperty>
  85. <systemProperty>
  86. <name>app.home</name>
  87. <value>/Users/luoshi/develop/data/stmms-ft</value>
  88. </systemProperty>
  89. </systemProperties>
  90. </configuration>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>