To install OfficeFloor's stand-alone server (OfficeBuilding):
JConsole should now be running connected to the server. See the OfficeBuilding MBean for running OfficeFloor applications or run officebuilding help for the various options.
Next install the OfficeFloor Eclipse Plug-in to start developing OfficeFloor applications.
The OfficeFloor server can be installed by the following commands.
wget http://www.officefloor.net/pom.xml
mvn installIf wget is not available download this pom.xml (right click and save as) and then run mvn install in same directory.
After running the OfficeFloor server will be installed in the current directory. Please see the above steps for running.
OfficeFloor is available as Maven artifacts/dependencies. As these are available from Maven Central, add the following to the project's pom.xml to include OfficeFloor's web functionality.
<project>
...
<dependencies>
<dependency>
<groupId>net.officefloor.plugin</groupId>
<artifactId>officeplugin_woof</artifactId>
<version>2.12.0</version>
</dependency>
</dependency>
...
</dependencies>
</project>Details of developing applications with OfficeFloor are available in the tutorials.
The latest OfficeFloor artifacts are made available to try at the below repository before being released to Maven Central.
<project>
...
<repositories>
<repository>
<id>maven2-repository.officefloor.net</id>
<name>OfficeFloor Repository for Maven</name>
<url>http://www.officefloor.net/maven2/</url>
</repository>
</repositories>
...
</project>