pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>cn.itlym.platform</groupId>
  5. <artifactId>uaa-infrastructure</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>uaa-storage</artifactId>
  10. <description>持久化存储相关接口(Mapper/Repository)、数据库模型定义(Entity/PO)</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.projectlombok</groupId>
  14. <artifactId>lombok</artifactId>
  15. <scope>provided</scope>
  16. </dependency>
  17. <!-- Mybatis-Plus 用户中心-权限存在一些联表查询,使用Mybatis 效率更高一些 -->
  18. <dependency>
  19. <groupId>com.baomidou</groupId>
  20. <artifactId>mybatis-plus-annotation</artifactId>
  21. </dependency>
  22. <!-- JPA -->
  23. <!--<dependency>
  24. <groupId>jakarta.persistence</groupId>
  25. <artifactId>jakarta.persistence-api</artifactId>
  26. </dependency>-->
  27. </dependencies>
  28. </project>