sqlman
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ajaxjs</groupId> <artifactId>sqlman</artifactId> <version>1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.ajaxjs</groupId> <artifactId>ajaxjs-parent</artifactId> <version>1.26</version> <relativePath/> </parent> <artifactId>sqlman</artifactId> <version>1.2</version> <name>SqlMan</name> <packaging>jar</packaging> <description>A easy, small, straight forward Java CRUD Helper.</description> <scm> <url>https://github.com/lightweight-component/SqlMan</url> <connection>scm:git:https://github.com/lightweight-component/SqlMan.git</connection> </scm> <issueManagement> <system>Github Issues</system> <url>https://github.com/lightweight-component/SqlMan/issues</url> </issueManagement> <dependencies> <dependency> <groupId>com.ajaxjs</groupId> <artifactId>ajaxjs-util</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>5.3.31</version> </dependency> <dependency> <groupId>com.github.jsqlparser</groupId> <artifactId>jsqlparser</artifactId> </dependency> <!-- 编译为 jar 包时依赖的 --> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> </dependencies> </project>