Skip to content

Commit

Permalink
📚 docs: update README.md #3
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Jun 30, 2024
1 parent 5331366 commit b114974
Showing 1 changed file with 14 additions and 19 deletions.
33 changes: 14 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## Introduction

unify4J: Java 1.8 skeleton library offering a rich toolkit of utility functions for collections, strings, date/time, JSON, maps, and more.
unify4J: Java 1.8 skeleton library offering a rich toolkit of utility functions for collections, strings, date/time,
JSON, maps, and more.

## Features

Expand Down Expand Up @@ -55,11 +56,18 @@ make jar

### Upgrading version

- file `gradle.properties`

```sh
ng.name=unify4j
ng.version=v1.0.0
- file `gradle.yml`

```yaml
ng:
name: unify4j
version: v1.0.0
enabled_link: false # enable compression and attachment of the external libraries
jars:
- enabled: false # enable compression and attachment of the external libraries
source: "" # lib Jar
- enabled: false
source: ""
```
## Integration
Expand All @@ -69,16 +77,3 @@ ng.version=v1.0.0
```gradle
implementation files('libs/unify4j-v1.0.0.jar') // filename based on ng.name and ng.version
```

2. Edit file `main Spring Boot application` (optional)

```java

@SpringBootApplication
@ComponentScan(basePackages = {"org.unify4j"}) // root name of package wizard4j
public class ApiApplication {
public static void main(String[] args) {
SpringApplication.run(ApiApplication.class, args);
}
}
```

0 comments on commit b114974

Please sign in to comment.