Skip to content

An API lib for developing JRuyi based applications.

License

Notifications You must be signed in to change notification settings

jruyi/jruyi-api

Repository files navigation

JRuyi API

Build Status

An API lib for developing JRuyi based applications.

Requirements

Oracle/OpenJDK JDK 7 and above.

Binaries

Releases are available via JCenter.

For Gradle:

repositories {
    jcenter()
}

dependencies {
    compile 'org.jruyi:jruyi-api:2.5.1'
}

For Maven:

<repositories>
    <repository>
        <id>jcenter</id>
        <url>https://jcenter.bintray.com</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>org.jruyi</groupId>
        <artifactId>jruyi-api</artifactId>
        <version>2.5.1</version>
    </dependency>
</dependencies>

Snapshots are available via JFrog.

For Gradle:

repositories {
    maven {
        url 'https://oss.jfrog.org/libs-snapshot'
    }
}

dependencies {
    compile 'org.jruyi:jruyi-api:x.y.z-SNAPSHOT'
}

For Maven:

<repositories>
    <repository>
        <id>ojo</id>
        <url>https://oss.jfrog.org/libs-snapshot</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>org.jruyi</groupId>
        <artifactId>jruyi-api</artifactId>
        <version>x.y.z-SNAPSHOT</version>
    </dependency>
</dependencies>

License

JRuyi API is licensed under the Apache License, Version 2.0.

About

An API lib for developing JRuyi based applications.

Resources

License

Stars

Watchers

Forks

Packages

No packages published