Deploying Snapshots
To deploy AppFuse snapshots to http://static.appfuse.org/repository
, create a ~/.m2/settings.xml file with the following settings:
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<servers>
<server>
<id>appfuse-snapshots</id>
<username>username</username>
<password>password</password>
</server>
</servers>
</settings>
Then you can run "mvn deploy" from the AppFuse project. Please contact Matt Raible for the username and password.
Deploying Plugin Websites
To deploy AppFuse plugins' documentation to http://static.appfuse.org/plugins
, create a ~/.m2/settings.xml file with the following settings:
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<servers>
<server>
<id>appfuse-plugins</id>
<username>username</username>
<password>password</password>
</server>
</servers>
</settings>
Then you can run "mvn deploy" from the "plugins" module. Please contact Matt Raible for the username and password.
Currently deployed plugin websites include the AppFuse Plugin
and the WarPath Plugin
.