Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tommylemon/unitauto-jar
UnitAuto Jar 库,可通过 Maven, Gradle 等远程依赖。UnitAuto Jar Library for remote dependencies with Maven, Gradle, etc.
https://github.com/tommylemon/unitauto-jar
unitauto
Last synced: about 1 month ago
JSON representation
UnitAuto Jar 库,可通过 Maven, Gradle 等远程依赖。UnitAuto Jar Library for remote dependencies with Maven, Gradle, etc.
- Host: GitHub
- URL: https://github.com/tommylemon/unitauto-jar
- Owner: TommyLemon
- License: apache-2.0
- Created: 2020-11-13T13:42:36.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-25T13:47:32.000Z (12 months ago)
- Last Synced: 2023-11-25T14:36:26.016Z (12 months ago)
- Topics: unitauto
- Language: Java
- Homepage: https://github.com/TommyLemon/UnitAuto
- Size: 246 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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'
}
```