pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.superdesk.uniorder</groupId>
  7. <artifactId>superdesk-operation-center</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>superdesk-uniorder-dubbo-facade</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <version>3.8.1</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.superdesk.uniorder</groupId>
  21. <artifactId>superdesk-uniorder-common</artifactId>
  22. <version>${project.parent.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.superdesk.uniorder</groupId>
  26. <artifactId>superdesk-uniorder-dto</artifactId>
  27. <version>${project.parent.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.superdesk.uniorder</groupId>
  31. <artifactId>superdesk-uniorder-dao</artifactId>
  32. <version>${project.parent.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.pagehelper</groupId>
  36. <artifactId>pagehelper</artifactId>
  37. <version>${pagehelper.version}</version>
  38. </dependency>
  39. </dependencies>
  40. </project>