1
0

pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <parent>
  5. <groupId>cn.com.qmth.stmms</groupId>
  6. <artifactId>stmms-parent</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <groupId>cn.com.qmth.stmms</groupId>
  10. <artifactId>stmms-biz</artifactId>
  11. <version>1.0-SNAPSHOT</version>
  12. <packaging>jar</packaging>
  13. <name>stmms-biz</name>
  14. <url>http://maven.apache.org</url>
  15. <dependencies>
  16. <dependency>
  17. <groupId>javax.validation</groupId>
  18. <artifactId>validation-api</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.hibernate</groupId>
  22. <artifactId>hibernate-validator</artifactId>
  23. <exclusions>
  24. <exclusion>
  25. <artifactId>classmate</artifactId>
  26. <groupId>com.fasterxml</groupId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.springfox</groupId>
  32. <artifactId>springfox-swagger2</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.com.qmth.stmms</groupId>
  36. <artifactId>stmms-common</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.data</groupId>
  44. <artifactId>spring-data-jpa</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hibernate</groupId>
  48. <artifactId>hibernate-entitymanager</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.hibernate</groupId>
  52. <artifactId>hibernate-ehcache</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.eclipse.persistence</groupId>
  56. <artifactId>javax.persistence</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.hibernate.javax.persistence</groupId>
  60. <artifactId>hibernate-jpa-2.0-api</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-dbcp</groupId>
  64. <artifactId>commons-dbcp</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>commons-pool</groupId>
  68. <artifactId>commons-pool</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>net.sf.json-lib</groupId>
  72. <artifactId>json-lib-ext-spring</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.google.guava</groupId>
  76. <artifactId>guava</artifactId>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/com.aliyun.oss/aliyun-sdk-oss -->
  79. <dependency>
  80. <groupId>com.aliyun.oss</groupId>
  81. <artifactId>aliyun-sdk-oss</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>junit</groupId>
  85. <artifactId>junit</artifactId>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.qmth.boot</groupId>
  90. <artifactId>tools-device</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.qmth.boot</groupId>
  94. <artifactId>tools-common</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.qmth.boot</groupId>
  98. <artifactId>core-models</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.qmth.boot</groupId>
  102. <artifactId>core-models</artifactId>
  103. </dependency>
  104. </dependencies>
  105. </project>