Common classes for java, independent from other libraries
Go to file
Johannes Frohnmeyer 108a370c51
ci/woodpecker/push/woodpecker Pipeline was successful Details
chore(muscript): delete old implementation keeping redirects in place for docs
2024-04-07 17:25:47 +02:00
buildSrc feat: replace commons-logging with slf4j-based commons-logger and use type-safe dependency DSLs 2024-03-09 12:37:38 +01:00
commons feat(commons): wrap IO exception in UncheckedIOException instead of generic RuntimeException 2024-04-03 17:20:19 +02:00
commons-http-client feat: break apart HttpClient 2024-04-03 17:28:49 +02:00
commons-http-server feat: replace commons-logging with slf4j-based commons-logger and use type-safe dependency DSLs 2024-03-09 12:37:38 +01:00
commons-io feat: replace commons-logging with slf4j-based commons-logger and use type-safe dependency DSLs 2024-03-09 12:37:38 +01:00
commons-logger fix(logger): catch exception during configuration 2024-03-14 15:36:26 +01:00
commons-manifold feat: replace commons-logging with slf4j-based commons-logger and use type-safe dependency DSLs 2024-03-09 12:37:38 +01:00
commons-serialize feat: replace commons-logging with slf4j-based commons-logger and use type-safe dependency DSLs 2024-03-09 12:37:38 +01:00
commons-serialize-gson feat: replace commons-logging with slf4j-based commons-logger and use type-safe dependency DSLs 2024-03-09 12:37:38 +01:00
commons-serialize-gson-dsl feat: replace commons-logging with slf4j-based commons-logger and use type-safe dependency DSLs 2024-03-09 12:37:38 +01:00
commons-unsafe docs(unsafe): Document commons-unsafe 2024-03-09 14:08:27 +01:00
gradle BREAKING(logger): use System.Logger instead of SLF4J 2024-03-14 13:57:12 +01:00
muscript chore(muscript): delete old implementation keeping redirects in place for docs 2024-04-07 17:25:47 +02:00
muscript-ast fix(muscript): restore old convenience methods for decompiling 2024-04-07 17:16:26 +02:00
muscript-core feat(muscript): port over DirectPreconditionVisitor implicitly 2024-04-07 15:55:45 +02:00
muscript-data-additional fix(muscript): actually export standard lib 2024-04-07 17:18:03 +02:00
muscript-data-dynamic fix(muscript): disable formatting for intentional exceptions 2024-04-07 17:17:53 +02:00
muscript-gson fix(muscript-gson): port over to new implementation 2024-04-07 17:25:27 +02:00
muscript-optimizer feat(muscript): enhance Get to prefer List/Object-specific variants if type can be easily inferred 2024-04-07 16:21:18 +02:00
muscript-parser fix(muscript): handle "this" correctly 2024-04-07 17:18:23 +02:00
muscript-runtime chore(muscript): copy tests and documentation over to new implementation 2024-04-07 17:18:48 +02:00
muscript-serialize fix(muscript): correct muscript-serialize module info 2024-04-07 17:16:44 +02:00
.gitignore 0.1.0 2022-04-28 20:52:32 +02:00
.woodpecker.yml feat: update to JDK 21 2024-04-03 17:28:40 +02:00
README.md BREAKING(logger): use System.Logger instead of SLF4J 2024-03-14 13:57:12 +01:00
build.gradle.kts feat: update to JDK 21 2024-04-03 17:28:40 +02:00
settings.gradle.kts chore(muscript): delete old implementation keeping redirects in place for docs 2024-04-07 17:25:47 +02:00

README.md

JfCommons

Common code for my java projects. Uses my common build scripts.

Modules

  • commons: Common java code without a major theme or external dependencies
  • commons-http-client: A simple http client
  • commons-http-server: A simple http server based on JLHTTP
  • commons-io: Utility classes for caching, hashing, reading json, opening archives, etc.
  • commons-logger: A simple logging framework for System.Logger supporting hot reloading and slightly improved APIs
  • commons-manifold: Some common code using the features of manifold-ext. Mainly extension classes.
  • commons-serialize: Provides some utility classes for serialization
  • commons-serialize-gson: Provides some utility classes around my fork of gson and an implementation of the Serializer interface
  • commons-serialize-gson-dsl: Provides a Kotlin DSL for json generation
  • commons-unsafe: Provides wrappers around sun.misc.Unsafe and the LambdaMetaFactory
  • muscript: A simple scripting language
  • muscript-gson: Glue code for manipulating gson with muscript