pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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>usoft-framework-parent</artifactId>
  7. <groupId>com.usoft.framework</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>usoft-mybatis-utils</artifactId>
  12. <version>${profile}-1.0-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <dependencyManagement>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.usoft.framework</groupId>
  18. <artifactId>usoft-grpc-dependencies</artifactId>
  19. <version>dev-1.0-SNAPSHOT</version>
  20. <type>pom</type>
  21. <scope>import</scope>
  22. </dependency>
  23. </dependencies>
  24. </dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.mybatis.generator</groupId>
  28. <artifactId>mybatis-generator-core</artifactId>
  29. </dependency>
  30. </dependencies>
  31. </project>