1
0

pom.xml 3.5 KB

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