mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Refactor: added auto-generated readable readme file to releases
This commit is contained in:
parent
7880d6cc43
commit
e2271d79fb
7 changed files with 62 additions and 3 deletions
23
pom.xml
23
pom.xml
|
|
@ -116,11 +116,34 @@
|
|||
<version>2.7</version>
|
||||
</plugin>
|
||||
|
||||
<!-- devs only: allows to run apps from command line by exec:java command -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>exec-maven-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
|
||||
<!-- generate readable readme file for releases -->
|
||||
<!-- results uses in distribution.xml -->
|
||||
<!-- https://github.com/walokra/markdown-page-generator-plugin -->
|
||||
<plugin>
|
||||
<groupId>com.ruleoftech</groupId>
|
||||
<artifactId>markdown-page-generator-plugin</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>process-resources</phase>
|
||||
<goals>
|
||||
<goal>generate</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<inputDirectory>../</inputDirectory>
|
||||
<inputFileExtensions>md</inputFileExtensions>
|
||||
<outputDirectory>${project.build.directory}/docs</outputDirectory>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue