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

Download JAR files tagged by central with all dependencies

Search JAR files by class name

infinispan-spring6-embedded from group org.infinispan (version 15.0.2.Final)

Group: org.infinispan Artifact: infinispan-spring6-embedded
Show all versions Show documentation Show source 
 

0 downloads
Artifact infinispan-spring6-embedded
Group org.infinispan
Version 15.0.2.Final
Last update 18. April 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 8
Dependencies infinispan-component-processor, protostream-processor, infinispan-core, infinispan-spring6-common, jakarta.annotation-api, jakarta.transaction-api, spring-tx, narayana-jta,
There are maybe transitive dependencies!

defaultj from group io.defaultj (version 2.3.1)

DefaultJ is a powerful Java library that provides default values for any class, offering multiple strategies for obtaining those values. It can be used as a dependency injection utility, similar to Guice. With 14 built-in strategies, DefaultJ can obtain default values through various means such as explicit bindings, annotations, enum values, factory methods, and more. It also supports custom annotations and offers annotation processors for validation. Available on Maven Central, DefaultJ can be easily integrated into Gradle and Maven projects. Contributions and selective usage of the library are encouraged.

Group: io.defaultj Artifact: defaultj
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact defaultj
Group io.defaultj
Version 2.3.1
Last update 13. November 2023
Organization nawaman.net
URL https://github.com/NawaMan/DefaultJ
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

chips-n-salsa-examples from group org.cicirello (version 6.4.0)

This package contains several example programs of the usage of the Chips-n-Salsa library. Chips-n-Salsa is a Java library of customizable, hybridizable, iterative, parallel, stochastic, and self-adaptive local search algorithms. Chips-n-Salsa's source code is maintained on GitHub, and the prebuilt jars of the library can be imported from Maven Central using maven or other build tools. The purpose of the package chips-n-salsa-examples is to demonstrate usage of the major functionality of the Chips-n-Salsa library. You can find out more about the Chips-n-Salsa library itself from its website: https://chips-n-salsa.cicirello.org/.

Group: org.cicirello Artifact: chips-n-salsa-examples
Show all versions Show documentation Show source 
 

0 downloads
Artifact chips-n-salsa-examples
Group org.cicirello
Version 6.4.0
Last update 02. August 2023
Organization Cicirello.Org
URL https://github.com/cicirello/chips-n-salsa-examples
License GPL-3.0-or-later
Dependencies amount 1
Dependencies chips-n-salsa,
There are maybe transitive dependencies!

defailtj from group io.defaultj (version 2.2.0.4)

DefaultJ is a powerful Java library that provides default values for any class, offering multiple strategies for obtaining those values. It can be used as a dependency injection utility, similar to Guice. With 14 built-in strategies, DefaultJ can obtain default values through various means such as explicit bindings, annotations, enum values, factory methods, and more. It also supports custom annotations and offers annotation processors for validation. Available on Maven Central, DefaultJ can be easily integrated into Gradle and Maven projects. Contributions and selective usage of the library are encouraged.

Group: io.defaultj Artifact: defailtj
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact defailtj
Group io.defaultj
Version 2.2.0.4
Last update 11. July 2023
Organization not specified
URL https://github.com/NawaMan/DefaultJ
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

jpt-examples from group org.cicirello (version 5.1.0)

This package contains several example programs of the usage of the JavaPermutationTools (JPT) library. JPT is a Java library that enables representing and generating permutations and sequences, as well as performing computation on permutations and sequences. It includes implementations of a variety of permutation distance metrics as well as distance metrics on sequences (i.e., Strings, arrays, and other ordered data types). In addition to programs demonstrating the usage of the JPT library, the jpt-examples package also contains programs for replicating the experiments from a few published papers that utilized the library or implementations on which the library is based. JPT's source code is maintained on GitHub, and the prebuilt jars of the library can be imported from Maven Central using maven or other build tools. The purpose of the package jpt-examples is to demonstrate usage of the major functionality of the JPT library. You can find out more about the JPT library itself from its website: https://jpt.cicirello.org/.

Group: org.cicirello Artifact: jpt-examples
Show all versions Show documentation Show source 
 

0 downloads
Artifact jpt-examples
Group org.cicirello
Version 5.1.0
Last update 31. May 2023
Organization Cicirello.Org
URL https://github.com/cicirello/jpt-examples
License GPL-3.0-or-later
Dependencies amount 1
Dependencies jpt,
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!

hexlib from group com.lafouche (version 0.50)

A Java component which displays bytes in Hex- and ASCII-format. The component is designed as a standalone lib. A complete interface which provides the function of an HexEditor based on this lib exisits under the Fork of this project. \r\n This library is simply taken directly from sourceforge at https://sourceforge.net/projects/hexlib/ and made it available in maven central repository. No other changes have been made (including keeping the same license).

Group: com.lafouche Artifact: hexlib
Show documentation Show source 
 

0 downloads
Artifact hexlib
Group com.lafouche
Version 0.50
Last update 18. March 2022
Organization not specified
URL http://hexedit-lib.sourceforge.net
License BSD-3-Clause
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

infinispan-spring from group org.infinispan (version 8.2.12.Final)

The Infinispan Spring Integration project provides Spring integration for Infinispan, a high performance distributed cache. Its primary features are * An implementation of org.springframework.cache.CacheManager, Spring's central caching abstraction, backed by Infinispan's EmbeddedCacheManager. To be used if your Spring-powered application and Infinispan are colocated, i.e. running within the same VM. * An implementation of org.springframework.cache.CacheManager backed by Infinispan's RemoteCacheManager. To bes used if your Spring-powered application accesses Infinispan remotely, i.e. over the network. * An implementation of org.springframework.cache.CacheManager backed by a CacheContainer reference. To be used if your Spring- powered application needs access to a CacheContainer defined outside the application (e.g. retrieved from JNDI) * Spring namespace support allowing shortcut definitions for all the components above In addition, Infinispan Spring Integration offers various FactoryBeans for facilitating creation of Infinispan core classes - Cache, CacheManager, ... - within a Spring context.

Group: org.infinispan Artifact: infinispan-spring
Show all versions Show source 
 

7 downloads
Artifact infinispan-spring
Group org.infinispan
Version 8.2.12.Final
Last update 07. January 2020
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies spring-context, infinispan-core,
There are maybe transitive dependencies!

kernel-osx from group net.sf.sf3jswing (version 1.3.22)

Group: net.sf.sf3jswing Artifact: kernel-osx
Show all versions Show documentation Show source 
 

0 downloads
Artifact kernel-osx
Group net.sf.sf3jswing
Version 1.3.22
Last update 08. October 2019
Organization not specified
URL Not specified
License The Apache License, Version 2.0
Dependencies amount 3
Dependencies AppleJavaExtensions, quaqua-laf-nofile, appbundler,
There are maybe transitive dependencies!

kernel-core from group net.sf.sf3jswing (version 1.3.22)

Group: net.sf.sf3jswing Artifact: kernel-core
Show all versions Show documentation Show source 
 

0 downloads
Artifact kernel-core
Group net.sf.sf3jswing
Version 1.3.22
Last update 08. October 2019
Organization not specified
URL Not specified
License The Apache License, Version 2.0
Dependencies amount 9
Dependencies ${project.parent.artifactId}-${platformModule}, junit-dep, commons-codec, commons-httpclient, commons-io, httpcore-nio, commons-logging, httpcore, ant-contrib,
There are maybe transitive dependencies!



Page 153 from 158 (items total 1574)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy