delei opened a new pull request, #706:
URL: https://github.com/apache/fesod/pull/706
## Purpose of the pull request
Close #686
## What's changed?
- Split into multiple maven modules
- Change the version number to `2.0.0-SNAPSHOT`
- Use `${revision}` to manage the unified version number
- Optimize the dependencies between modules
## Multi-Module
The refactored project will have the following module hierarchy:
```bash
fesod-parent # Root
├── fesod-bom # Maven BOM
├── fesod-common # General modules and utility classes
├── fesod-examples # Usage examples
│ └── fesod-sheet-examples # Fesod spreadsheets examples
└── fesod-sheet # For spreadsheets(csv,excel)
```
- **fesod-bom**: Maven BOM(Bill of Materials) Module
- **fesod-common**: Minimal dependencies, some generic utility classes have
already been migrated.
- **fesod-examples**: Create submodules according to the specific module
(processor) type.
- **fesod-sheet**: `fesod` has been renamed to `fesod-sheet`, for use in
spreadsheets only
### Dependency Graph
```mermaid
graph TD
M2(fesod-common)
M3(fesod-sheet-examples)
M4(fesod-sheet)
M5(fesod-examples)
T1(poi-ooxml)
T2(poi)
T3(commons-io)
T4(commons-csv)
T5(ehcache)
T6(fastexcel-support)
M5 --> M3
M4 --> M2
M4 --> T1
M4 --> T2
M4 --> T3
M4 --> T4
M4 --> T5
M4 --> T6
M3 --> M4
```
Bom
```mermaid
graph TD
M1(fesod-bom)
M2(fesod-common)
M3(fesod-sheet)
M1 -.-> M2
M1 -.-> M3
```
## Checklist
- [x] I have read the [Contributor
Guide](https://fesod.apache.org/community/contribution/).
- [x] I have written the necessary doc or comment.
- [x] I have added the necessary unit tests and all cases have passed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]