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

Download JAR files tagged by files with all dependencies

Search JAR files by class name

aocr from group de.niklasfi.aocr (version 2.4)

Swiftly add ocr layers to scanned pdf files. Unfortunately existing open source ocr solutions (tesseract) pale in comparison with the ones commercially available. The azure read api provides particularly good results. It is also easy to set up, but while it can annotate text in images, there is no easy way to upload and ocr a full pdf document. That is, until now. aocr provides an easy way to ocr full pdf documents.

Group: de.niklasfi.aocr Artifact: aocr
Show all versions Show documentation Show source 
 

0 downloads
Artifact aocr
Group de.niklasfi.aocr
Version 2.4
Last update 19. December 2023
Organization not specified
URL https://github.com/niklasfi/aocr
License MIT License
Dependencies amount 10
Dependencies mapstruct, lombok, pdfbox, pdfbox-tools, jbig2-imageio, commons-cli, httpclient5, jackson-databind, jackson-datatype-jsr310, commons-text,
There are maybe transitive dependencies!

excel-chunky-sax from group com.mdazad.chunkysax (version 1.0.0)

The ExcelChunkySAX library provides a way to process large Excel files in chunks using a SAX parser. It reads the Excel file in chunks and performs the specified action on each chunk. The library provides an interface ChunkAction that needs to be implemented to define the action to be performed on each chunk. The library uses Apache POI library to read the Excel file and SAX parser to parse the XML data. Note: any type of date format should be converted to yyyy-MM-dd.

Group: com.mdazad.chunkysax Artifact: excel-chunky-sax
Show documentation Show source 
 

0 downloads
Artifact excel-chunky-sax
Group com.mdazad.chunkysax
Version 1.0.0
Last update 11. November 2023
Organization not specified
URL https://github.com/gitAzad/excel-chunky-sax
License MIT License
Dependencies amount 2
Dependencies poi, poi-ooxml,
There are maybe transitive dependencies!

cocoon-core from group org.apache.cocoon (version 2.3.0)

Module that contains dependencies to all modules normally needed for a basic Cocoon webapp. Cocoon blocks should normally depend on this modules, as the exact content of the more fine grained sitemap, pipeline and support modules is not stable yet. This module also contains some classes, configuration files and tests that we not have decided where to move yet.

Group: org.apache.cocoon Artifact: cocoon-core
Show all versions Show documentation Show source 
 

0 downloads
Artifact cocoon-core
Group org.apache.cocoon
Version 2.3.0
Last update 29. October 2023
Organization not specified
URL http://cocoon.apache.org/${docs.m.core.relPath}
License not specified
Dependencies amount 21
Dependencies cocoon-spring-configurator, cocoon-configuration-api, cocoon-block-deployment, cocoon-pipeline-components, cocoon-sitemap-impl, cocoon-sitemap-components, cocoon-xml-resolver, cocoon-thread-api, cocoon-xml-util, excalibur-pool-api, excalibur-logger, excalibur-store, avalon-framework-impl, commons-io, commons-logging, commons-jexl, xalan, xercesImpl, xml-apis, xml-resolver, log4j,
There are maybe transitive dependencies!

properties-maven-plugin from group org.infrastructurebuilder.maven (version 1.2.1.0-ib)

The Properties Maven Plugin is here to make life a little easier when dealing with properties. It provides goals to read and write properties from files. This was forked from the original properties-maven-plugin to fix issue mojohaus/properties-maven-plugin#30. For RELEASED IB Versions prior to 1.2.0.1, see [the original forked repo](https://github.com/infrastructurebuilder/archived-properties-maven-plugin) Note that the IB version might be released ahead or behind the mojohaus version.

Group: org.infrastructurebuilder.maven Artifact: properties-maven-plugin
Show all versions Show documentation 
 

0 downloads
Artifact properties-maven-plugin
Group org.infrastructurebuilder.maven
Version 1.2.1.0-ib
Last update 20. September 2023
Organization not specified
URL https://www.mojohaus.org/properties-maven-plugin
License The Apache Software License, Version 2.0
Dependencies amount 6
Dependencies plexus-utils, plexus-sec-dispatcher, json, json-flattener, aws-java-sdk, tomlj,
There are maybe transitive dependencies!

mina-integration-xbean from group org.apache.mina (version 2.2.3)

This module generates an XML scheme file for the MINA Spring configuration namespace. This XSD is referenced by Spring configuration files using MINA components to have a much less verbose configuration. When used with the XBean application context loader the same old Spring ApplictionContext is generated from this more intuitive and terse configuration file.

Group: org.apache.mina Artifact: mina-integration-xbean
Show all versions Show documentation Show source 
 

0 downloads
Artifact mina-integration-xbean
Group org.apache.mina
Version 2.2.3
Last update 06. September 2023
Organization not specified
URL https://maven.apache.org
License not specified
Dependencies amount 5
Dependencies mina-integration-beans, mina-core, mina-core, spring, xbean-spring,
There are maybe transitive dependencies!

filechampion4j from group dev.filechampion (version 0.9.8.3)

FileChampion4j is a powerful and flexible Java library for validating and processing files. The library can be used to check files for a variety of properties, including mime type, magic bytes, header signatures, footer signatures, maximum size, and more. The library can also execute extension plugins that are defined for the file type.

Group: dev.filechampion Artifact: filechampion4j
Show all versions Show documentation Show source 
 

0 downloads
Artifact filechampion4j
Group dev.filechampion
Version 0.9.8.3
Last update 14. May 2023
Organization filechampion.dev
URL https://github.com/povimd9/FileChampion4j
License Apache License 2.0 License
Dependencies amount 3
Dependencies json, jmh-core, jmh-generator-annprocess,
There are maybe transitive dependencies!

krausening-root from group org.bitbucket.askllc.krausening (version 15)

Krausening is a library that allows for the externalization of property and configuration files from deployment units, such as WARs, EARs, uber JARs, etc. By ensuring that property files are external to deployment packages, these packages can be easily reused as-is to deploy to heterogeneous environments, circumventing the need to hack apart or rebuild the package to support property file modification.

Group: org.bitbucket.askllc.krausening Artifact: krausening-root
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact krausening-root
Group org.bitbucket.askllc.krausening
Version 15
Last update 04. April 2023
Organization not specified
URL https://bitbucket.org/askllc/krausening
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

externalsortinginjava from group com.google.code.externalsortinginjava (version 0.6.2)

Sometimes, you want to sort large file without first loading them into memory. The solution is to use External Sorting. You divide the files into small blocks, sort each block in RAM, and then merge the result. Many database engines and the Unix sort command support external sorting. But what if you want to avoid a database? Or what if you want to sort in a non-lexicographic order? Or maybe you just want a simple external sorting example? When we could not find such a simple program, we wrote one.

Group: com.google.code.externalsortinginjava Artifact: externalsortinginjava
Show all versions Show documentation Show source 
 

5 downloads
Artifact externalsortinginjava
Group com.google.code.externalsortinginjava
Version 0.6.2
Last update 04. April 2023
Organization not specified
URL http://github.com/lemire/externalsortinginjava/
License Public Domain
Dependencies amount 1
Dependencies commons-csv,
There are maybe transitive dependencies!

plsar-java from group net.plsar (version 3.0.1)

PLSA.R is an Open Source Server + Framework Environment for small to large scale requirements. There are no static references, no file reads, access to static fields per request. Everything is either cached and or instantiated on the fly. PLSA.R runs via one command so there are no .war files to deploy, no additional plugins to install it is a simple yet powerful alternative to container deployment environments. http://plsar.net

Group: net.plsar Artifact: plsar-java
Show all versions Show documentation Show source 
 

0 downloads
Artifact plsar-java
Group net.plsar
Version 3.0.1
Last update 10. February 2023
Organization not specified
URL https://www.plsar.net
License Moded license
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

drasyl-parent from group org.drasyl (version 0.10.0)

drasyl is a general-purpose overlay network framework for rapid development of distributed P2P applications. By using drasyl developers can fully concentrate on creating distributed applications. With drasyl, boundaries between IP-based networks will be eliminated and secure communication channels between any peers will be provided. Zero-configuration is required to use drasyl. Developers can run a new drasyl node without having to write configuration files or provide IP addresses of peers.

Group: org.drasyl Artifact: drasyl-parent
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact drasyl-parent
Group org.drasyl
Version 0.10.0
Last update 31. January 2023
Organization Heiko Bornholdt and Kevin Röbert
URL https://drasyl.org/
License MIT License
Dependencies amount 6
Dependencies mockito-core, mockito-junit-jupiter, hamcrest, junit-jupiter-engine, junit-jupiter-api, junit-jupiter-params,
There are maybe transitive dependencies!



Page 509 from 3 (items total 5461)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy