1 Star 0 Fork 2

study/simple-db

forked from lhc/simple-db 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 2.94 KB
一键复制 编辑 原始数据 按行查看 历史
lhc 提交于 2022-08-12 11:12 . Initial commit
<?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>
<groupId>simple-db</groupId>
<artifactId>simple-db-hw</artifactId>
<version>1.0</version>
<name>simple-db-hw</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<!-- 将simpledb的依赖加入这里-->
<!-- https://mvnrepository.com/artifact/jline/jline -->
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>0.9.94</version>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/junit-4.13.1.jar</systemPath>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-core -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/hamcrest-core-1.3.jar</systemPath>
</dependency>
<!-- https://mvnrepository.com/artifact/com.jcraft/jzlib -->
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jzlib</artifactId>
<version>1.0.7</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.mina/mina-core -->
<!-- <dependency>-->
<!-- <groupId>org.apache.mina</groupId>-->
<!-- <artifactId>mina-core</artifactId>-->
<!-- <version>2.0.4</version>-->
<!-- <scope>system</scope>-->
<!-- <systemPath>${project.basedir}/lib/mina-core-2.0.4.jar</systemPath>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; https://mvnrepository.com/artifact/org.apache.mina/mina-filter-compression &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.apache.mina</groupId>-->
<!-- <artifactId>mina-filter-compression</artifactId>-->
<!-- <version>2.0.4</version>-->
<!-- <scope>system</scope>-->
<!-- <systemPath>${project.basedir}/lib/mina-filter-compression-2.0.4.jar</systemPath>-->
<!-- </dependency>-->
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.berkeley.simpledb</groupId>
<artifactId>zql</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/zql.jar</systemPath>
</dependency>
</dependencies>
<build>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/study_44/simple-db.git
git@gitee.com:study_44/simple-db.git
study_44
simple-db
simple-db
master

搜索帮助