Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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'
}
```