pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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-uniorder</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>superdesk-uniorder-dao</artifactId>
  11. <dependencies>
  12. <!-- <dependency>-->
  13. <!-- <groupId>org.projectlombok</groupId>-->
  14. <!-- <artifactId>lombok</artifactId>-->
  15. <!-- <version>${lombok.version}</version>-->
  16. <!-- <scope>provided</scope>-->
  17. <!-- </dependency>-->
  18. <dependency>
  19. <groupId>cn.superdesk.uniorder</groupId>
  20. <artifactId>superdesk-uniorder-dto</artifactId>
  21. <version>${project.parent.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.mybatis</groupId>
  25. <artifactId>mybatis</artifactId>
  26. <!-- <version>3.5.1</version>-->
  27. <version>3.5.4</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-context</artifactId>
  32. <version>5.1.8.RELEASE</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>fastjson</artifactId>
  37. <version>1.2.83</version>
  38. </dependency>
  39. </dependencies>
  40. </project>