Page tree

Versions Compared

Key

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

...

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)

The pluginRepositories node is at the top level of the pom file, like the repositories node. 

Add the following plugin repository to the pom.xml file in your App project:

Code Block
languagexml
titlepom.xml
<pluginRepositories>
	<pluginRepository>
		<id>repo3</id>
		<url>http://maven2.bioviz.org/repo3</url>
	</pluginRepository>
</pluginRepositories> 

Supported Markdown

The IGB App Manager should honor github-flavored markdown, described here: https://help.github.com/articles/github-flavored-markdown/

...