Skip to content

chon-group/javino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

javino

Maven

Add it in your pom.xml at the end of repositories and add the dependency.

<repositories>
  <repository>
    <id>jitpack.io</id>
      <url>https://jitpack.io</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>com.github.chon-group</groupId>
    <artifactId>javino</artifactId>
    <version>1.6.2</version>
  </dependency>
</dependencies>

Gradle

Add it in your root build.gradle at the end of repositories and add the dependency.

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}

dependencies {
  implementation 'com.github.chon-group:javino:1.6.2'
}