项目作者: jayden-lee

项目描述 :
kotlin utility library
高级语言: Kotlin
项目地址: git://github.com/jayden-lee/commons.git
创建时间: 2020-04-04T14:32:22Z
项目社区:https://github.com/jayden-lee/commons

开源协议:

下载


Commons

How to install

Maven

Add the following repository to your pom.xml:

  1. <repositories>
  2. <repository>
  3. <id>jitpack.io</id>
  4. <url>https://jitpack.io</url>
  5. </repository>
  6. </repositories>

Add the following dependencies to your pom.xml:

  1. <dependencies>
  2. <dependency>
  3. <groupId>com.github.jayden-lee</groupId>
  4. <artifactId>commons</artifactId>
  5. <version>0.0.2</version>
  6. </dependency>
  7. </dependencies>

Gradle

Add the following repository to your build.gradle.kts:

  1. repositories {
  2. maven { setUrl("https://jitpack.io") }
  3. }

Add the following dependency to your build.gradle:

  1. dependencies {
  2. compileOnly("com.github.jayden-lee:commons:0.0.2")
  3. }