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,20 +27,19 @@ package com.iluwatar.gameloop;
import lombok.extern.slf4j.Slf4j;
/**
* A game loop runs continuously during gameplay. Each turn of the loop, it processes
* user input without blocking, updates the game state, and renders the game. It tracks
* the passage of time to control the rate of gameplay.
* A game loop runs continuously during gameplay. Each turn of the loop, it processes user input
* without blocking, updates the game state, and renders the game. It tracks the passage of time to
* control the rate of gameplay.
*/
@Slf4j
public class App {
/**
* Each type of game loop will run for 2 seconds.
*/
/** Each type of game loop will run for 2 seconds. */
private static final int GAME_LOOP_DURATION_TIME = 2000;
/**
* Program entry point.
*
* @param args runtime arguments
*/
public static void main(String[] args) {
@@ -71,5 +70,4 @@ public class App {
LOGGER.error(e.getMessage());
}
}
}