-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Changed parent pom version (fj-bom) to 0.2.3 * Updated documentation * Updated to yaml-doc-tool 0.3.0
- Loading branch information
Showing
4 changed files
with
148 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,106 @@ | ||
/target/ | ||
/.classpath | ||
/.project | ||
/.settings/ | ||
### Idea Intellij ### | ||
.idea/ | ||
*.iml | ||
|
||
### Eclipse ### | ||
|
||
.metadata | ||
bin/ | ||
tmp/ | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.settings/ | ||
.loadpath | ||
.recommenders | ||
|
||
.vscode/ | ||
|
||
# Eclipse Core | ||
.project | ||
|
||
# External tool builders | ||
.externalToolBuilders/ | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# PyDev specific (Python IDE for Eclipse) | ||
*.pydevproject | ||
|
||
# CDT-specific (C/C++ Development Tooling) | ||
.cproject | ||
|
||
# JDT-specific (Eclipse Java Development Tools) | ||
.classpath | ||
|
||
# Java annotation processor (APT) | ||
.factorypath | ||
|
||
# PDT-specific (PHP Development Tools) | ||
.buildpath | ||
|
||
# sbteclipse plugin | ||
.target | ||
|
||
# Tern plugin | ||
.tern-project | ||
|
||
# TeXlipse plugin | ||
.texlipse | ||
|
||
# STS (Spring Tool Suite) | ||
.springBeans | ||
|
||
# Code Recommenders | ||
.recommenders/ | ||
|
||
# Scala IDE specific (Scala & Java development for Eclipse) | ||
.cache-main | ||
.scala_dependencies | ||
.worksheet | ||
|
||
### Java ### | ||
# Compiled class file | ||
*.class | ||
|
||
# Log file | ||
*.log | ||
|
||
# BlueJ files | ||
*.ctxt | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
### Maven ### | ||
target/ | ||
pom.xml.tag | ||
pom.xml.releaseBackup | ||
pom.xml.versionsBackup | ||
pom.xml.next | ||
release.properties | ||
dependency-reduced-pom.xml | ||
buildNumber.properties | ||
.mvn/timing.properties | ||
|
||
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored) | ||
!/.mvn/wrapper/maven-wrapper.jar | ||
|
||
# End of https://www.gitignore.io/api/java,maven,eclipse | ||
|
||
/.apt_generated/ | ||
/.apt_generated_tests/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
0.3.0 (2022-11-27) | ||
------------------ | ||
+ Changed parent pom version (fj-bom) to 0.2.3 | ||
* Updated documentation | ||
* Updated to yaml-doc-tool 0.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,29 @@ | ||
# yaml-doc-tool | ||
# yaml-doc-maven-plugin | ||
|
||
Tool for auto documentation of yaml / openapi | ||
Simple maven plugin for [yaml-doc-tool](https://github.com/fugerit-org/yaml-doc-tool) project. | ||
|
||
**Usage:** | ||
Accepted config params are : | ||
* configPath | ||
* idCatalog | ||
|
||
java -jar dist-yaml-doc-tool-X.X.X.jar --input-yaml [path-to-openapi]\ | ||
--output-file [output-file]\ | ||
--language [language]\ | ||
--labels-override [path-to-labels-properties] | ||
|
||
**example :** | ||
Here a sample configuration : | ||
|
||
java -jar dist-yaml-doc-tool-0.1.0.jar --input-yaml sample.yaml --output-file sample.pdf --language it | ||
|
||
**output-file** | ||
currently supported extensions : pdf, xlsx, xml | ||
|
||
**language** | ||
currently supported languages : it, en | ||
|
||
**labels-overrides** | ||
path to alternate labels properties | ||
currently supported labels are available in : src/main/resources/lang/label.properties | ||
``` | ||
<plugin> | ||
<groupId>org.fugerit.java</groupId> | ||
<artifactId>yaml-doc-maven-plugin</artifactId> | ||
<version>${yaml-doc-version}</version> | ||
<configuration> | ||
<configPath>src/config/yaml-doc-config.xml</configPath> | ||
<idCatalog>openapi</idCatalog> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>openapi</id> | ||
<goals> | ||
<goal>generate</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters