rui-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.mybatis.rui</groupId> <artifactId>rui-core</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.mybatis.rui</groupId> <artifactId>rui-parent</artifactId> <version>1.1.0</version> </parent> <groupId>io.mybatis.rui</groupId> <artifactId>rui-core</artifactId> <version>1.1.0</version> <name>rui-core</name> <description>睿 - 核心代码</description> <licenses> <license> <name>Apache License 2.0</name> <url>https://github.com/guozilan/rui/blob/master/LICENSE</url> </license> </licenses> <dependencies> <dependency> <groupId>io.mybatis.rui</groupId> <artifactId>rui-vfs</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> </dependency> <dependency> <groupId>org.mvel</groupId> <artifactId>mvel2</artifactId> </dependency> <dependency> <groupId>org.atteo</groupId> <artifactId>evo-inflector</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>sqltool</artifactId> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> </dependencies> </project>