1
0

pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>cn.com.qmth.stmms</groupId>
  18. <artifactId>stmms-common</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>mysql</groupId>
  22. <artifactId>mysql-connector-java</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.data</groupId>
  26. <artifactId>spring-data-jpa</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.hibernate</groupId>
  30. <artifactId>hibernate-entitymanager</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.hibernate</groupId>
  34. <artifactId>hibernate-ehcache</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.eclipse.persistence</groupId>
  38. <artifactId>javax.persistence</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.hibernate.javax.persistence</groupId>
  42. <artifactId>hibernate-jpa-2.0-api</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-dbcp</groupId>
  46. <artifactId>commons-dbcp</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-pool</groupId>
  50. <artifactId>commons-pool</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>net.sf.json-lib</groupId>
  54. <artifactId>json-lib-ext-spring</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.google.guava</groupId>
  58. <artifactId>guava</artifactId>
  59. </dependency>
  60. <!-- https://mvnrepository.com/artifact/com.aliyun.oss/aliyun-sdk-oss -->
  61. <dependency>
  62. <groupId>com.aliyun.oss</groupId>
  63. <artifactId>aliyun-sdk-oss</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>junit</groupId>
  67. <artifactId>junit</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.qmth.boot</groupId>
  72. <artifactId>tools-device</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.qmth.boot</groupId>
  76. <artifactId>tools-common</artifactId>
  77. </dependency>
  78. </dependencies>
  79. </project>