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

Download JAR files tagged by built with all dependencies

Search JAR files by class name

pmd-python from group net.sourceforge.pmd (version 7.4.0)

Group: net.sourceforge.pmd Artifact: pmd-python
Show all versions Show documentation Show source 
 

4 downloads
Artifact pmd-python
Group net.sourceforge.pmd
Version 7.4.0
Last update 26. July 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies pmd-core,
There are maybe transitive dependencies!

pmd-scala_2.12 from group net.sourceforge.pmd (version 7.4.0)

Group: net.sourceforge.pmd Artifact: pmd-scala_2.12
Show all versions Show documentation Show source 
 

0 downloads
Artifact pmd-scala_2.12
Group net.sourceforge.pmd
Version 7.4.0
Last update 26. July 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies scala-library, parsers_${scalaVersion}, trees_${scalaVersion},
There are maybe transitive dependencies!

pmd-languages-deps from group net.sourceforge.pmd (version 7.4.0)

Group: net.sourceforge.pmd Artifact: pmd-languages-deps
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact pmd-languages-deps
Group net.sourceforge.pmd
Version 7.4.0
Last update 26. July 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 30
Dependencies pmd-apex, pmd-coco, pmd-cpp, pmd-cs, pmd-dart, pmd-fortran, pmd-gherkin, pmd-go, pmd-groovy, pmd-html, pmd-java, pmd-javascript, pmd-jsp, pmd-julia, pmd-kotlin, pmd-lua, pmd-matlab, pmd-modelica, pmd-objectivec, pmd-perl, pmd-php, pmd-plsql, pmd-python, pmd-ruby, pmd-scala_2.13, pmd-swift, pmd-tsql, pmd-visualforce, pmd-velocity, pmd-xml,
There are maybe transitive dependencies!

pmd-scala-common from group net.sourceforge.pmd (version 7.4.0)

Group: net.sourceforge.pmd Artifact: pmd-scala-common
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact pmd-scala-common
Group net.sourceforge.pmd
Version 7.4.0


pmd-doc from group net.sourceforge.pmd (version 7.4.0)

Group: net.sourceforge.pmd Artifact: pmd-doc
Show all versions Show documentation Show source 
 

0 downloads
Artifact pmd-doc
Group net.sourceforge.pmd
Version 7.4.0
Last update 26. July 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies pmd-core, commons-lang3, commons-text, snakeyaml,
There are maybe transitive dependencies!

pmd-dart from group net.sourceforge.pmd (version 7.4.0)

Group: net.sourceforge.pmd Artifact: pmd-dart
Show all versions Show documentation Show source 
 

0 downloads
Artifact pmd-dart
Group net.sourceforge.pmd
Version 7.4.0
Last update 26. July 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies pmd-core, antlr4-runtime,
There are maybe transitive dependencies!

pmd-compat6 from group net.sourceforge.pmd (version 7.2.0)

Group: net.sourceforge.pmd Artifact: pmd-compat6
Show all versions Show documentation Show source 
 

0 downloads
Artifact pmd-compat6
Group net.sourceforge.pmd
Version 7.2.0
Last update 31. May 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 5
Dependencies pmd-core, pmd-java, pmd-javascript, pmd-jsp, pmd-cs,
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!

GroovyConsole from group cz.datalite.zk-dl (version 1.4.5)

Group: cz.datalite.zk-dl Artifact: GroovyConsole
Show documentation Show source 
 

0 downloads
Artifact GroovyConsole
Group cz.datalite.zk-dl
Version 1.4.5
Last update 02. May 2017
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies groovy-all,
There are maybe transitive dependencies!

zk-dl-private from group cz.datalite.zk-dl (version 1.4.5)

Group: cz.datalite.zk-dl Artifact: zk-dl-private
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact zk-dl-private
Group cz.datalite.zk-dl
Version 1.4.5
Last update 02. May 2017
Organization not specified
URL Not specified
License GNU LESSER GENERAL PUBLIC LICENSE, Version 3
Dependencies amount 1
Dependencies DLHelpers,
There are maybe transitive dependencies!



Page 557 from 561 (items total 5602)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy