https://github.com/fugerit-org/fj-tool-helper
Simple project with utilities for stand alone tool
https://github.com/fugerit-org/fj-tool-helper
Last synced: 3 months ago
JSON representation
Simple project with utilities for stand alone tool
- Host: GitHub
- URL: https://github.com/fugerit-org/fj-tool-helper
- Owner: fugerit-org
- License: apache-2.0
- Created: 2023-09-27T19:46:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-18T10:26:23.000Z (over 1 year ago)
- Last Synced: 2025-02-15T23:43:26.339Z (5 months ago)
- Language: Java
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# fj-tool-helper
Simple project with utilities for stand alone tool.
[](CHANGELOG.md)
[](https://mvnrepository.com/artifact/org.fugerit.java/fj-tool-helper)
[](https://opensource.org/licenses/Apache-2.0)
[](https://github.com/fugerit-org/fj-universe/blob/main/CODE_OF_CONDUCT.md)
[](https://sonarcloud.io/summary/new_code?id=fugerit-org_fj-tool-helper)
[](https://sonarcloud.io/summary/new_code?id=fugerit-org_fj-tool-helper)[](https://universe.fugerit.org/src/docs/versions/java11.html)
[](https://universe.fugerit.org/src/docs/versions/java11.html)
[](https://universe.fugerit.org/src/docs/versions/maven3_9.html)
[](https://universe.fugerit.org/src/docs/conventions/index.html)## Quickstart
build :
`mvn clean install -P singlepackage`
run :
```
Example : java -jar target/dist-fj-tool-helper-*.jar \
--tool-help-config-path src/main/resources/tool/tool-help-config.xml \
--output-file target/help.md \
--output-format md
```
## **parameter help**| **name** | **required** | **default** | **description** | **since** | **info** |
|---------------|---------------|---------------|---------------|---------------|---------------|
| `tool-help-config-path` | `true` | none | Path to tool-help-config xml file. | 0.1.0 | By default the path will be looked on file system, to search in classpath prefix with cl:// |
| `output-file` | `true` | none | Path to the the file to create. | 0.1.0 | Must be a physical file |
| `output-format` | `true` | none | Output format, currently accepted formats are md (markdown), html, pdf, txt. | 0.1.0 | The output will be generated via Venus Fugerit document generation framework (https://github.com/fugerit-org/fj-doc). |
| `exclude-info` | `false` | `false` | If set to `true`, the 'info' columns of tool parameters will be ignored. | 0.1.0 | The output will be generated via Venus Fugerit document generation framework (https://github.com/fugerit-org/fj-doc). |
| `help` | `false` | none | Print help about the tool. | 0.1.0 | In case of errors the help will be printed too. |