The Ropes 4 Java package, exported to a git repo.
I use JitPack for publishing both releases and javadocs.
Here is a link to the javadocs for the latest release. (NOTE: It is normal to take a while to load the docs, since JitPack may not have built it yet.)
First you need to add the jitpack maven repo (https://jitpack.io
) to your gradle file build.gradle.kts
if not already present:
// See Gradle docs for maven repositories: https://docs.gradle.org/8.1/userguide/declaring_repositories.html
repositories {
// Add maven central
mavenCentral()
// Add jitpack
maven {
url = uri("https://jitpack.io")
}
}
Then you can add the dependency later on (substituting whatever version is appropriate).
dependencies {
implementation("com.github.Techcable:ahmadsoft-ropes:1.2.7")
}
This code is not my own. I just updated it to modern Java. It was originally created by Mr. Amin Ahmad. I found it on his website.
I could not find the source repository on the original website, so I am simply turning each source tarball from the releases page into its own git commit.
See also the original javadocs