pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>io.springfox</groupId>
  19. <artifactId>springfox-swagger2</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.xiaoymin</groupId>
  23. <artifactId>swagger-bootstrap-ui</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.com.qmth.stmms</groupId>
  27. <artifactId>stmms-biz</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-webmvc</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-io</groupId>
  35. <artifactId>commons-io</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>jstl</groupId>
  39. <artifactId>jstl</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.mortbay.jetty</groupId>
  43. <artifactId>jetty</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>javax.servlet</groupId>
  47. <artifactId>javax.servlet-api</artifactId>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.validation</groupId>
  52. <artifactId>validation-api</artifactId>
  53. <version>1.1.0.Final</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.hibernate</groupId>
  57. <artifactId>hibernate-validator</artifactId>
  58. <version>5.0.1.Final</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>javax.servlet.jsp</groupId>
  62. <artifactId>jsp-api</artifactId>
  63. <version>2.1</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>opensymphony</groupId>
  68. <artifactId>sitemesh</artifactId>
  69. <version>2.4.2</version>
  70. <scope>runtime</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.qmth.boot</groupId>
  74. <artifactId>core-models</artifactId>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.mortbay.jetty</groupId>
  81. <artifactId>jetty-maven-plugin</artifactId>
  82. <configuration>
  83. <webApp>
  84. <contextPath>/</contextPath>
  85. </webApp>
  86. <connectors>
  87. <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
  88. <port>8090</port>
  89. <maxIdleTime>60000</maxIdleTime>
  90. </connector>
  91. </connectors>
  92. <systemProperties>
  93. <systemProperty>
  94. <name>catalina.home</name>
  95. <value>/Users/luoshi/develop/data/stmms-ft</value>
  96. </systemProperty>
  97. <systemProperty>
  98. <name>app.home</name>
  99. <value>/Users/luoshi/develop/data/stmms-ft</value>
  100. </systemProperty>
  101. </systemProperties>
  102. </configuration>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>