Releases: kummerer94/binding-docu-generator
Releases · kummerer94/binding-docu-generator
Integration into the build
This release mainly implements #3. You can now integrate the plugin into your build.
<build>
<plugins>
<plugin>
<groupId>org.openhab</groupId>
<artifactId>binding-docu-generator</artifactId>
<version>0.1.2</version>
<executions>
<execution>
<id>docu-generation</id>
<phase>package</phase>
<goals>
<goal>generate-docu</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
The workflow changed:
- Plugin checks if there are any mustache template files or downloads them.
- If all template files are present we start parsing your ESH-INF/ directory.
- Since all data is present we can now start the generation of your readme.
- We save the readme file in your local filespace.