# unitauto-jar **Repository Path**: TommyLemon/unitauto-jar ## Basic Information - **Project Name**: unitauto-jar - **Description**: UnitAuto Jar 库,可通过 Maven, Gradle 等远程依赖。UnitAuto Jar Library for remote dependencies with Maven, Gradle, etc. - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: https://gitee.com/TommyLemon/UnitAuto - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-08-24 - **Last Updated**: 2024-07-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: 零代码, 单元测试, unitauto, 测试, 自动化 ## README # unitauto-jar [![](https://jitpack.io/v/TommyLemon/unitauto-jar.svg)](https://jitpack.io/#TommyLemon/unitauto-jar) UnitAuto Jar 库,可通过 Maven, Gradle 等远程依赖。
UnitAuto Jar Library for remote dependencies with Maven, Gradle, etc. ### Maven #### 1. 在 pom.xml 中添加 JitPack 仓库 #### 1. Add the JitPack repository to pom.xml ```xml jitpack.io https://jitpack.io ```
#### 2. 在 pom.xml 中添加 unitauto-jar 依赖 #### 2. Add the unitauto-jar dependency to pom.xml ```xml com.github.TommyLemon unitauto-jar LATEST ```


### Gradle #### 1. 在项目根目录 build.gradle 中最后添加 JitPack 仓库 #### 1. Add the JitPack repository in your root build.gradle at the end of repositories ```gradle allprojects { repositories { ... maven { url 'https://jitpack.io' } } } ```
#### 2. 在项目某个 module 目录(例如 `app`) build.gradle 中添加 unitauto-jar 依赖 #### 2. Add the unitauto-jar dependency in one of your modules(such as `app`) ```gradle dependencies { implementation 'com.github.TommyLemon:unitauto-jar:latest' } ```