pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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-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. </dependencies>
  35. </project>