pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>common-lib</artifactId>
  7. <groupId>com.yihu</groupId>
  8. <version>1.0.0</version>
  9. <relativePath>../../common-lib/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>common-entity</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.hibernate</groupId>
  16. <artifactId>hibernate-validator</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.hibernate</groupId>
  20. <artifactId>hibernate-entitymanager</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fasterxml.jackson.core</groupId>
  24. <artifactId>jackson-databind</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.fasterxml.jackson.dataformat</groupId>
  28. <artifactId>jackson-dataformat-xml</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.fasterxml.jackson.module</groupId>
  32. <artifactId>jackson-module-jaxb-annotations</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-core</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.commons</groupId>
  40. <artifactId>commons-lang3</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.elasticsearch</groupId>
  44. <artifactId>elasticsearch</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.searchbox</groupId>
  48. <artifactId>jest</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.data</groupId>
  52. <artifactId>spring-data-commons</artifactId>
  53. <version>1.11.4.RELEASE</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>fastjson</artifactId>
  58. </dependency>
  59. </dependencies>
  60. </project>