123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-mybatis</artifactId>
- <version>${revision}</version>
- </parent>
- <artifactId>warm-flow-mybatis-solon-plugin</artifactId>
- <description>warm-flow orm为mybatis的solon plugin</description>
- <dependencies>
- <dependency>
- <groupId>org.noear</groupId>
- <artifactId>solon</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-mybatis-core</artifactId>
- </dependency>
- </dependencies>
- </project>
|