Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebthom/jstuff
Toolbox for Java
https://github.com/sebthom/jstuff
java library utilities
Last synced: about 10 hours ago
JSON representation
Toolbox for Java
- Host: GitHub
- URL: https://github.com/sebthom/jstuff
- Owner: sebthom
- License: epl-2.0
- Created: 2017-10-17T14:41:07.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-04-09T10:17:45.000Z (7 months ago)
- Last Synced: 2024-04-09T12:02:00.124Z (7 months ago)
- Topics: java, library, utilities
- Language: Java
- Homepage:
- Size: 14.2 MB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# jstuff - toolbox for Java
[![Build Status](https://img.shields.io/github/actions/workflow/status/sebthom/jstuff/build.yml?logo=github)](https://github.com/sebthom/jstuff/actions/workflows/build.yml)
[![Javadoc](https://img.shields.io/badge/javadoc-online-green)](https://sebthom.github.io/jstuff/javadoc/)
[![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/sebthom/jstuff)](https://codeclimate.com/github/sebthom/jstuff/maintainability)
[![Test Coverage](https://img.shields.io/codeclimate/coverage/sebthom/jstuff)](https://codeclimate.com/github/sebthom/jstuff/test_coverage)
[![License](https://img.shields.io/github/license/sebthom/jstuff.svg?color=blue)](LICENSE.txt)
[![Maven Central](https://img.shields.io/maven-central/v/net.sf.jstuff/jstuff-parent)](https://central.sonatype.com/search?namespace=net.sf.jstuff)## Table of Contents
1. [What is it?](#what-is-it)
2. [Java Compatibility](#compatibility)
3. [Binaries](#binaries)
4. [License](#license)jstuff is a collection of utility libraries
1. [jstuff-core](/jstuff-core/src/main/java/net/sf/jstuff/core) - core utility classes for the Java SE standard library.
2. [jstuff-integration](/jstuff-integration/src/main/java/net/sf/jstuff/integration) - utility classes for Java EE (Servlet, JPA, ...) and 3rd party frameworks (Spring, Jackson).
3. [jstuff-xml](/jstuff-xml/src/main/java/net/sf/jstuff/xml) - contains supporting classes for XML processing.- jstuff 8.x requires Java 17 or newer.
- jstuff 6.x-7.x requires Java 11 or newer.
- jstuff 5.x requires Java 8 or newer.
- jstuff 1.x-4.x requires Java 5 or newer.Latest **release** binaries are available on Maven Central, see https://central.sonatype.com/search?namespace=net.sf.jstuff
You can add the required jstuff module as a dependency in your `pom.xml`:
```xml
net.sf.jstuff
jstuff-[MODULE_GOES_HERE]
[VERSION_GOES_HERE]
pom
import
net.sf.jstuff
jstuff-[MODULE_GOES_HERE]
```
All files are released under the [Eclipse Public License 2.0](LICENSE.txt).
Individual files contain the following tag instead of the full license text:
```
SPDX-License-Identifier: EPL-2.0
```This enables machine processing of license information based on the SPDX License Identifiers that are available here: https://spdx.org/licenses/.