All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by travis with all dependencies

Search JAR files by class name

travis from group com.cibuddy (version 1.0.0)

Travis-CI build server status check bundle

Group: com.cibuddy Artifact: travis
Show documentation Show source 
 

0 downloads
Artifact travis
Group com.cibuddy
Version 1.0.0
Last update 12. January 2013
Organization not specified
URL Not specified
License not specified
Dependencies amount 9
Dependencies core, slf4j-api, org.apache.felix.fileinstall, org.osgi.core, httpclient-osgi, gson, junit, de.kalpatec.pojosr.framework, slf4j-simple,
There are maybe transitive dependencies!

java-tooling-template-archetype from group br.com.miguelfontes (version 1.10)

A quickstart archetype with Travis, JUnit 5, Jacoco, Codecov and Sonarcloud pre-configured from the box!

Group: br.com.miguelfontes Artifact: java-tooling-template-archetype
Show all versions Show source 
 

0 downloads
Artifact java-tooling-template-archetype
Group br.com.miguelfontes
Version 1.10
Last update 09. March 2019
Organization not specified
URL https://github.com/Miguel-Fontes/java-tooling-template
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

datanucleus-db4o-sql from group org.datanucleus (version 3.0.1)

sql4o was written by Travis Reeder and provides an SQL interface to the db4o object datastore.

Group: org.datanucleus Artifact: datanucleus-db4o-sql
Show all versions Show source 
 

0 downloads
Artifact datanucleus-db4o-sql
Group org.datanucleus
Version 3.0.1
Last update 26. August 2011
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies db4o,
There are maybe transitive dependencies!

sql4o from group org.datanucleus (version 2.0.0-release)

sql4o was written by Travis Reeder and provides an SQL interface to the db4o object datastore.

Group: org.datanucleus Artifact: sql4o
Show all versions Show source 
 

0 downloads
Artifact sql4o
Group org.datanucleus
Version 2.0.0-release
Last update 05. February 2010
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies db4o,
There are maybe transitive dependencies!

get-caller-file from group org.mvnpm (version 2.0.5)

[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.a

Group: org.mvnpm Artifact: get-caller-file
Show documentation Show source 
 

0 downloads
Artifact get-caller-file
Group org.mvnpm
Version 2.0.5
Last update 27. October 2023
Organization Stefan Penner
URL https://github.com/stefanpenner/get-caller-file#readme
License ISC
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

exadatum-travis-sonatype-archetype from group com.exadatum.xsuite.xmaven (version 1.0.4)

An archetype to generate exadatum open source module to be deployed to maven central via travis CI and sonatype

Group: com.exadatum.xsuite.xmaven Artifact: exadatum-travis-sonatype-archetype
Show all versions Show source 
 

0 downloads
Artifact exadatum-travis-sonatype-archetype
Group com.exadatum.xsuite.xmaven
Version 1.0.4
Last update 16. December 2017
Organization Exadatum Software Services Pvt. Ltd.
URL http://www.exadatum.com
License Apache 2
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

geokey from group io.github.markrileybot (version 0.1.0)

# 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); } } ```

Group: io.github.markrileybot Artifact: geokey
Show all versions Show documentation Show source 
 

0 downloads
Artifact geokey
Group io.github.markrileybot
Version 0.1.0
Last update 20. June 2022
Organization not specified
URL https://github.com/markrileybot/geokey
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 2 from 2 (items total 17)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy