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

Download JAR files tagged by write with all dependencies

Search JAR files by class name

javax-mail-extension from group org.apache.james (version 3.8.1)

Group: org.apache.james Artifact: javax-mail-extension
Show all versions Show source 
 

0 downloads
Artifact javax-mail-extension
Group org.apache.james
Version 3.8.1
Last update 11. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies guava, javax.mail, javax.activation-api, apache-mime4j-core,
There are maybe transitive dependencies!

event-bus from group org.apache.james (version 3.8.1)

Group: org.apache.james Artifact: event-bus
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact event-bus
Group org.apache.james
Version 3.8.1
Last update 11. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

event-sourcing from group org.apache.james (version 3.8.1)

Group: org.apache.james Artifact: event-sourcing
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact event-sourcing
Group org.apache.james
Version 3.8.1
Last update 11. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

james-project from group org.apache.james (version 3.8.1)

The Apache Java Enterprise Mail Server (a.k.a. Apache James) is a 100% pure Java SMTP, IMAP, JMAP and POP3 Mail server. We have designed James to be a complete and portable enterprise mail engine solution based on currently available open protocols. James is also a mail application platform. We have developed a Java API to let you write Java code to process emails that we call the mailet API. A mailet can generate an automatic reply, update a database, prevent spam, build a message archive, or whatever you can imagine. A matcher determines whether your mailet should process an email in the server. The James project hosts the Mailet API, and James provides an implementation of this mail application platform API.

Group: org.apache.james Artifact: james-project
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact james-project
Group org.apache.james
Version 3.8.1
Last update 11. February 2024
Organization not specified
URL https://james.apache.org/
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

elements from group org.codeprimate (version 2.0.0-M4)

Java Simplified. Extensions and Useful Constructs for the Java Platform. Codeprimate Elements (a.k.a. cp-elements) is a Java library and micro-framework used to simplify the development of software applications written in Java. Elements packages several APIs into one library in order to address various application concerns and aspects of software design and development collectively and conveniently. Elements is a highly simple, yet robust and proven library built on solid OO principles, software design patterns and best practices to effectively solve common and reoccurring problems in software development. Write better Java!

Group: org.codeprimate Artifact: elements
Show all versions Show documentation Show source 
 

0 downloads
Artifact elements
Group org.codeprimate
Version 2.0.0-M4
Last update 23. November 2023
Organization Codeprimate.org
URL http://www.codeprimate.org/projects/cp-elements
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

getopt-databind from group pro.johndunlap (version 0.5.6)

This is a Java library which provides a flexible and customizable way to bind command line arguments to Java objects, in a similar manner to how JSON, XML, and YAML can be bound to Java objects. You can easily define Java classes that represent the data structure of your command line arguments, and use annotations to specify how those arguments should be parsed and bound to the corresponding fields in your Java object. This allows you to write command line interfaces that are more intuitive and easier to use, while also reducing the amount of boilerplate code that is needed to parse and validate command line arguments.

Group: pro.johndunlap Artifact: getopt-databind
Show documentation Show source 
 

0 downloads
Artifact getopt-databind
Group pro.johndunlap
Version 0.5.6
Last update 20. April 2023
Organization not specified
URL https://github.com/johndunlap/getopt-databind
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

boost_foreach from group com.github.brunotl (version 1.81.0)

In C++, writing a loop that iterates over a sequence is tedious. We can either use iterators, which requires a considerable amount of boiler-plate, or we can use the std::for_each() algorithm and move our loop body into a predicate, which requires no less boiler-plate and forces us to move our logic far from where it will be used. In contrast, some other languages, like Perl, provide a dedicated "foreach" construct that automates this process. BOOST_FOREACH is just such a construct for C++. It iterates over sequences for us, freeing us from having to deal directly with iterators or write predicates.

Group: com.github.brunotl Artifact: boost_foreach
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact boost_foreach
Group com.github.brunotl
Version 1.81.0
Last update 07. January 2023
Organization not specified
URL https://www.boost.org/
License Distributed under the Boost Software License, Version 1.0.
Dependencies amount 7
Dependencies boost_config, boost_detail, boost_mpl, boost_range, boost_type_traits, boost_iterator, boost_utility,
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!

nexus-deploy-stub from group com.yahoo.oak (version 0.2.5)

Group: com.yahoo.oak Artifact: nexus-deploy-stub
Show all versions 
 

0 downloads
Artifact nexus-deploy-stub
Group com.yahoo.oak
Version 0.2.5
Last update 03. March 2022
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies oak,
There are maybe transitive dependencies!



Page 126 from 132 (items total 1318)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy