Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Create a markdown file named README.md
  • Save it in the top level of your IGB App project (same level as pom.xml)

Add

...

Add an app.description tag within the properties tag of pom.xml, and use it to specify the name of your markdown file:

Code Block
languagexml
titlepom.xml
<properties>
	<app.description>AppDescription.md</app.description>
</properties>

Add Bundle-Description tag to pom.xml

...

Code Block
languagexml
titlepom.xml
<plugin>
    <groupId>com.lorainelab</groupId>
    <artifactId>bundle-markdown-encoder</artifactId>
    <executions>
        <execution>
            <goals>
                <goal>encodeMarkdown</goal>
            </goals>
        </execution> 
    </executions>
</plugin>  

Add plugin repository (from IGB project)

...