pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <dependency>
  61. <groupId>junit</groupId>
  62. <artifactId>junit</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. </dependencies>
  66. </project>