Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sivaosorg/wizards2s4j
wizards2s4j: A Java 1.8 library offering a robust collection of utility functions for streamlined development. It provides an opinionated view of the Spring platform and third-party libraries, enabling you to get started with minimal configuration.
https://github.com/sivaosorg/wizards2s4j
gradle java java-8 java-gradle plugin spring spring-boiler-plate spring-boot spring-library
Last synced: about 1 month ago
JSON representation
wizards2s4j: A Java 1.8 library offering a robust collection of utility functions for streamlined development. It provides an opinionated view of the Spring platform and third-party libraries, enabling you to get started with minimal configuration.
- Host: GitHub
- URL: https://github.com/sivaosorg/wizards2s4j
- Owner: sivaosorg
- Created: 2024-07-27T14:33:32.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-10-10T14:52:11.000Z (4 months ago)
- Last Synced: 2024-11-02T03:23:57.901Z (3 months ago)
- Topics: gradle, java, java-8, java-gradle, plugin, spring, spring-boiler-plate, spring-boot, spring-library
- Language: Groovy
- Homepage: https://github.com/sivaosorg/wizards2s4j
- Size: 423 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wizards2s4j
## Introduction
**wizards2s4j**: A Java 1.8 library offering a robust collection of utility functions for streamlined development. It
provides an opinionated view of the Spring platform and third-party libraries, enabling you to get started with minimal
configuration.## Features
- Comprehensive set of utility functions.
- Written in Java 1.8.
- Well-documented code for easy understanding.
- Regular updates and maintenance.## Installation
```bash
git clone --depth 1 https://github.com/sivaosorg/wizards2s4j.git
```## Generation Plugin Java
```bash
curl https://gradle-initializr.cleverapps.io/starter.zip -d type=groovy-gradle-plugin -d testFramework=testng -d projectName=wizards2s4j -o wizards2s4j.zip
```## Modules
Explain how users can interact with the various modules.
### Tidying up
To tidy up the project's Java modules, use the following command:
```bash
./gradlew clean
```or
```bash
make clean
```### Building SDK
```bash
./gradlew jar
```or
```bash
make jar
```### Upgrading version
- file `gradle.yml`
```yaml
ng:
name: wizards2s4j
version: v1.0.0
enabled_link: false # enable compression and attachment of the external libraries
jars:
# unify4J: Java 1.8 skeleton library offering a rich toolkit of utility functions
# for collections, strings, date/time, JSON, maps, and more.
- enabled: false # enable compression and attachment of the external libraries
source: "./../libs/unify4j-v1.0.0.jar"
# alpha4J: is a Java 8 library featuring common data structures and algorithms.
# Enhance your projects with efficient and easy-to-use implementations designed for performance and clarity.
- enabled: true
source: "./../libs/alpha4j-v1.0.0.jar"
```## Add dependencies
```groovy
// The "spring-core" library, version 5.3.31, is a fundamental component of the Spring Framework,
// offering essential functionality for dependency injection, bean management, and core utilities to facilitate robust Java application development within the Spring ecosystem.
implementation group: 'org.springframework', name: 'spring-core', version: '5.3.31'
// The "spring-boot-starter-web" library, version 2.7.18, is a Spring Boot starter module that facilitates the setup of web applications,
// providing essential dependencies and configurations for building web-based projects.
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.7.18'
// The "spring-boot-configuration-processor" library, version 2.7.18,
// is a Spring Boot module that processes configuration metadata annotations to generate metadata files and aid in auto-configuration of Spring applications.
implementation group: 'org.springframework.boot', name: 'spring-boot-configuration-processor', version: '2.7.18'
// The "spring-boot-starter-test" module version 2.7.18 provides a comprehensive test framework for Spring Boot applications.
// It includes JUnit, Mockito, Spring TestContext Framework, and other useful tools for testing Spring applications.
// The starter integrates these components seamlessly, making it easier to write and execute tests in a Spring Boot environment.
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '2.7.18'
// Mockito JUnit Jupiter version 3.12.4: This library integrates Mockito with JUnit 5,
// enabling developers to write unit tests using Mockito's powerful mocking features.
// It's designed to work specifically with the JUnit 5 platform, allowing for advanced testing capabilities.
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.12.4'
```## Integration
1. Add dependency into file `build.gradle`
```gradle
implementation files('libs/wizards2s4j-v1.0.0.jar') // filename based on ng.name and ng.version
```2. Edit file `main Spring Boot application` (optional)
```java
@SpringBootApplication
@ComponentScan(basePackages = {"your_package", "org.wizards2s4j"}) // root name of package wizard4j
public class ApiApplication {
public static void main(String[] args) {
SpringApplication.run(ApiApplication.class, args);
}
}
```