Data Formats

Last Version: 2.7.0.Final

Release Date:

Last Version: 3.8.2

Release Date:

Reactor AWS Client

com.github.tddmonkey : reactor-aws-sqs

Spring Reactor Wrapper around AWS Client

Last Version: 0.0.1

Release Date:

Last Version: 1.0.0-beta

Release Date:

TwelveMonkeys ImageIO PICT plugin

com.twelvemonkeys.imageio : twelvemonkeys-imageio-pict

ImageIO plugin for Apple Mac Paint Picture (PICT) format.

Last Version: 2.3

Release Date:

TedKeyboardObserver

io.github.ParkSangGwon : tedkeyboardobserver

TedKeyboardObserver is keyboard's visibility observer

Last Version: 1.0.1

Release Date:

keylock

cn.javasalon : keylock

Key lock project for spring boot

Last Version: 0.0.1

Release Date:

Last Version: 0.1.139

Release Date:

CLI Example Application

com.launchkey.sdk : examples-cli

Example application for using the Platform SDK in a CLI application

Last Version: 4.0.0

Release Date:

Last Version: 1.0.4

Release Date:

Last Version: 18.0.2

Release Date:

Parallelj - SSH - PublicKey

org.parallelj : parallelj-ssh-publickey

Management of ParallelJ extensions for SSH using public key

Last Version: 1.4.1

Release Date:

Siddhi KeyValue - Map Extensions

io.siddhi.extension.map.keyvalue : siddhi-map-keyvalue-parent

WSO2 is an open source application development software company focused on providing service-oriented architecture solutions for professional developers.

Last Version: 2.1.2

Release Date:

Last Version: v1.1.0

Release Date:

genkey

com.jarxi : genkey

genkey project for Spring Boot

Last Version: 1.2.0

Release Date:

TwelveMonkeys :: BOM

com.github.lafa.twelvemonkeyspurejava.bom : bom

TwelveMonkeys "Bill of Materials" (BOM).

Last Version: 1.0.1

Release Date:

Last Version: v1.27.3

Release Date:

Last Version: 2.0.3

Release Date:

Keyczar

com.offbytwo.keyczar : keyczar

Keyczar is a toolkit to make cryptography safer and easier

Last Version: 0.71g

Release Date:

Last Version: 1.0.0-RC2

Release Date:

KeyboardFXParent

com.dlsc.keyboardfx : parent

Parent project of KeyboardFX

Last Version: 1.1.0

Release Date:

iovation LaunchKey SDK Example Spring MVC Application

com.iovation.launchkey : sdk-examples-spring-mvc

Example application for using the LaunchKey SDK in a Spring MVC application

Last Version: 4.8.0

Release Date:

Last Version: 1.3.1

Release Date:

socialmanager

com.github.applikey : socialmanager

Easy Login in your app with different social networks.

Last Version: 1.0.0

Release Date:

persist-keyvalue-locally

tz.co.asoft : persist-keyvalue-locally-metadata

Platform agnostic contracts for persisting key-value pairs in a local environment

Last Version: 0.2.10

Release Date:

Last Version: 0.3.0-M1

Release Date:

Last Version: 1.0

Release Date:

Flowable Keycloak

com.premiumminds.flowable : flowable-keycloak

library to replace Flowable IDM with Keycloak integration

Last Version: 1.6

Release Date:

gRPC Java JWT

com.avast.grpc.jwt : grpc-java-jwt-keycloak

JWT based authentication for gRPC-Java

Last Version: 0.5.6

Release Date:

Keyple Gradle Plugin

org.eclipse.keyple : keyple-gradle

Gradle Plugin that regroups common tasks used by all Keyple Projects.

Last Version: 0.2.17

Release Date:

json-web-key-generator

org.mitre : json-web-key-generator

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/

Last Version: 0.8.2

Release Date:

midpoint gRPC Integration - Keycloak midPoint gRPC client

jp.openstandia : keycloak-midpoint-grpc-client

MidPoint extension that enables serving gRPC services on midPoint server.

Last Version: 1.4.0

Release Date:

numeric-keyboard

com.konaire.numeric-keyboard : numeric-keyboard

Simple numeric keyboard which can't be hidden.

Last Version: 1.2.0

Release Date:

pax-keycloak-jaas

org.ops4j.pax.keycloak : pax-keycloak-jaas

Maven parent POM for all OPS4J Maven projects.

Last Version: 0.2.0

Release Date:

Spring Boot Starter - API Statistics

com.keyholesoftware : khs-spring-boot-api-statistics-starter

A spring boot starter configuration for publishing API statistics.

Last Version: 1.0.1

Release Date:

RsaApiKeyValidator

io.toxicity : rsa-api-key-validator-iosx64

RSA API Key validator for Mobile Clients

Last Version: 2.0.3

Release Date:

st-euodp-connector

it.uniroma2.art.semanticturkey : st-euodp-connector

Semantic Turkey parent project. It contains the three modules about: core business logic, core services and firefox extension (ui and client in general) of the system. Three additional modules provide an implementation for the ontology manager to be bundled with the tool, an applet for graph visualization of ontologies and concept schemes and a test suite to run tests on a java client framework. An ANT build file allows to package the xpi for Firefox installation (read README2BUILD.TXT file for info)

Last Version: 9.1

Release Date:

geokey

io.github.markrileybot : geokey

# geokey K Dimensional Z-Order curve utils. [![Build Status](https://travis-ci.org/markrileybot/geokey.svg?branch=master)](https://travis-ci.org/markrileybot/geokey) [![Coverage Status](https://coveralls.io/repos/github/markrileybot/geokey/badge.svg?branch=master)](https://coveralls.io/github/markrileybot/geokey?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey) ## Building ./gradlew build ## Gradle dependency See https://search.maven.org/artifact/io.github.markrileybot/geokey/ ## Using ### Use built in keys to make geohashes ```java import org.geokey.GeoKey; // Make a geo hash key String key = new GeoKey().setLatitude(48.669).setLongitude(-4.329).toString(); // "gbsuv7ztqzpts82uzfwq5e1bp" // parse a geo hash key GeoKey gk = new GeoKey("gbsuv7ztqzpts82uzfwq5e1bp"); ``` ### Make a special purpose K-Dimensional key ```java public class GeoTimeKey extends KDKey { private static final KDKeySpec spec = new KDKeySpec.Builder() .addDim(-180, 180, 1) .addDim(-90, 90, 1) .addDim(0, 1L << 62, 1) .setAlphabet(Alphabet.GEO_TIME_HASH) .build(); public GeoTimeKey() { super(spec); } public GeoTimeKey(String s) { super(spec, s); } public GeoTimeKey(byte[] s) { super(spec, s); } public GeoTimeKey setLatitude(double latitude) { set(1, latitude); return this; } public double getLatitude() { return super.get(1); } public GeoTimeKey setLongitude(double longitude) { set(0, longitude); return this; } public double getLongitude() { return super.get(0); } public GeoTimeKey setTime(long time) { set(2, time); return this; } public long getTime() { return (long) get(2); } } ```

Last Version: 0.1.0

Release Date:

libkeyhook

com.mclarkdev.tools : libkeyhook

A minimal, Java based, global key press listener.

Last Version: 1.1

Release Date:

Last Version: 1.0

Release Date:

Last Version: 1.0

Release Date: