deps: Refactor dependencies (#3224)

* remove spring dep
move junit, logging, mockito under dep mgmt

* upgrade anti-corruption-layer deps

* async method invocation

* balking, bloc

* bridge to bytecode

* caching

* callback - cqrs

* component - health check

* hexagonal - metadata mapping

* rest of the patterns

* remove checkstyle, take spotless into use
This commit is contained in:
Ilkka Seppälä
2025-03-29 19:34:27 +02:00
committed by GitHub
parent 371439aeaa
commit 0ca162a55c
1863 changed files with 14408 additions and 17637 deletions
@@ -27,10 +27,10 @@ package com.iluwatar.updatemethod;
import lombok.extern.slf4j.Slf4j;
/**
* This pattern simulate a collection of independent objects by telling each to
* process one frame of behavior at a time. The game world maintains a collection
* of objects. Each object implements an update method that simulates one frame of
* the objects behavior. Each frame, the game updates every object in the collection.
* This pattern simulate a collection of independent objects by telling each to process one frame of
* behavior at a time. The game world maintains a collection of objects. Each object implements an
* update method that simulates one frame of the objects behavior. Each frame, the game updates
* every object in the collection.
*/
@Slf4j
public class App {
@@ -39,6 +39,7 @@ public class App {
/**
* Program entry point.
*
* @param args runtime arguments
*/
public static void main(String[] args) {