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

Download JAR files tagged by java with all dependencies

Search JAR files by class name

portofino-postgresql from group com.manydesigns (version 5.3.4)

Group: com.manydesigns Artifact: portofino-postgresql
Show all versions Show documentation Show source 
 

4 downloads
Artifact portofino-postgresql
Group com.manydesigns
Version 5.3.4
Last update 04. December 2022
Organization not specified
URL https://www.manydesigns.com/
License not specified
Dependencies amount 2
Dependencies portofino-database, hibernate-native-json,
There are maybe transitive dependencies!

portofino-db2 from group com.manydesigns (version 5.3.4)

Group: com.manydesigns Artifact: portofino-db2
Show all versions Show documentation Show source 
 

0 downloads
Artifact portofino-db2
Group com.manydesigns
Version 5.3.4
Last update 04. December 2022
Organization not specified
URL https://www.manydesigns.com/
License not specified
Dependencies amount 2
Dependencies portofino-database, liquibase-db2i,
There are maybe transitive dependencies!

portofino-microservice-launcher from group com.manydesigns (version 5.3.4)

Group: com.manydesigns Artifact: portofino-microservice-launcher
Show all versions Show documentation Show source 
 

0 downloads
Artifact portofino-microservice-launcher
Group com.manydesigns
Version 5.3.4
Last update 04. December 2022
Organization not specified
URL https://www.manydesigns.com/
License not specified
Dependencies amount 1
Dependencies commons-io,
There are maybe transitive dependencies!

portofino-crud from group com.manydesigns (version 5.3.4)

Group: com.manydesigns Artifact: portofino-crud
Show all versions Show documentation Show source 
 

0 downloads
Artifact portofino-crud
Group com.manydesigns
Version 5.3.4
Last update 04. December 2022
Organization not specified
URL https://www.manydesigns.com/
License not specified
Dependencies amount 2
Dependencies portofino-core, semver4j,
There are maybe transitive dependencies!

ziggurat from group org.cicirello (version 1.0.5)

Java implementation of the Ziggurat algorithm for generating Gaussian distributed pseudorandom numbers. The Ziggurat algorithm is significantly faster than the more commonly encountered Polar method, and has some other desirable statistical properties. The ZigguratGaussian class is a Java port of the GNU Scientific Library's C implementation (Voss, 2005) of the Ziggurat method. In porting to Java, we have made several optimizations, the details of which can be found in the source code comments, which highlights any differences between this Java implementation and the C implementation on which it is based. This package also includes an implementation of the Polar Method, included to enable comparing speed advantage of the Ziggurat algorithm.

Group: org.cicirello Artifact: ziggurat
Show all versions Show documentation Show source 
 

0 downloads
Artifact ziggurat
Group org.cicirello
Version 1.0.5
Last update 01. December 2022
Organization Cicirello.Org
URL https://github.com/cicirello/ZigguratGaussian
License GPL-3.0-or-later
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

brownies-collections from group org.magicwerk (version 0.9.16)

Brownies Collections complements the Java Collections Framework. GapList combines the strengths of both ArrayList and LinkedList. BigList is a list optimized for storing large number of elements. There are specialized List implementations for all primitive data types (IntGapList, IntBigList, IntObjGapList, IntObjBigList). The key collection classes offer support for keys and constraints for lists and collections (KeyList, KeyCollection, KeySet, Key1List, Key1Collection, Key1Set, Key2List, Key2Collection, Key2Set).

Group: org.magicwerk Artifact: brownies-collections
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
14 downloads
Artifact brownies-collections
Group org.magicwerk
Version 0.9.16
Last update 28. October 2022
Organization not specified
URL http://www.magicwerk.org/collections
License The Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

json-smart from group com.infomaximum (version 2.4.8)

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.

Group: com.infomaximum Artifact: json-smart
Show documentation Show source 
 

0 downloads
Artifact json-smart
Group com.infomaximum
Version 2.4.8
Last update 26. October 2022
Organization Chemouni Uriel
URL https://urielch.github.io/
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies accessors-smart,
There are maybe transitive dependencies!

heatshrink-java from group io.github.markrileybot (version 1.0.1)

# heatshrink-java Java library used to encode/decode [heatshrink](https://github.com/atomicobject/heatshrink) compressed data. ## Building ```bash ./gradlew build ``` ## Gradle dependency See https://search.maven.org/artifact/io.github.markrileybot/heatshrink-java/ ## Usage ### Java library ```java int windowSize = 9; int lookaheadSize = 8; ByteArrayOutputStream baos = new ByteArrayOutputStream(); try(HsOutputStream out = new HsOutputStream(baos, windowSize, lookaheadSize)) { out.write("ABCABCABCABCABCABC".getBytes()); } try(HsInputStream hsi = new HsInputStream(new ByteArrayInutStream(baos.toByteArray()), windowSize, lookaheadSize)) { byte[] res = new byte[512]; int len = hsi.read(res); System.out.println(new String(res, 0, len)); } ``` ### CLI ```bash $ java -jar heatshrink-java-exe.jar [-h] [-e|-d] [-v] [-w SIZE] [-l BITS] [IN_FILE] [OUT_FILE] ``` ## Status [![Build Status](https://github.com/markrileybot/heatshrink-java/actions/workflows/gradle-publish.yml/badge.svg)](https://github.com/markrileybot/heatshrink-java/actions/workflows/gradle-publish.yml) [![Coverage Status](https://coveralls.io/repos/github/markrileybot/heatshrink-java/badge.svg?branch=master)](https://coveralls.io/github/markrileybot/heatshrink-java?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)

Group: io.github.markrileybot Artifact: heatshrink-java
Show all versions Show documentation Show source 
 

0 downloads
Artifact heatshrink-java
Group io.github.markrileybot
Version 1.0.1
Last update 19. October 2022
Organization not specified
URL https://github.com/markrileybot/heatshrink-java
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

pdf2dom from group net.sf.cssbox (version 2.0.3)

Pdf2Dom is a PDF parser that converts the documents to a HTML DOM representation. The obtained DOM tree may be then serialized to a HTML file or further processed. The inline CSS definitions contained in the resulting document are used for making the HTML page as similar as possible to the PDF input. A command-line utility for converting the PDF documents to HTML is included in the distribution package. Pdf2Dom may be also used as an independent Java library with a standard DOM interface for your DOM-based applications or as an alternative parser for the CSSBox rendering engine in order to add the PDF processing capability to CSSBox.

Group: net.sf.cssbox Artifact: pdf2dom
Show all versions Show documentation Show source 
 

330 downloads
Artifact pdf2dom
Group net.sf.cssbox
Version 2.0.3
Last update 17. October 2022
Organization not specified
URL http://cssbox.sourceforge.net/pdf2dom
License GNU Lesser General Public License 3.0
Dependencies amount 4
Dependencies pdfbox, FontVerter, commons-io, slf4j-api,
There are maybe transitive dependencies!

portofino-groovy-service-archetype from group com.manydesigns (version 5.3.3)

Group: com.manydesigns Artifact: portofino-groovy-service-archetype
Show all versions Show source 
 

0 downloads
Artifact portofino-groovy-service-archetype
Group com.manydesigns
Version 5.3.3
Last update 15. October 2022
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 5948 from 6002 (items total 60017)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy