Versions Compared

Key

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

...

JavaDoc documentation for the current release can be found here

Building

...

from source

The Flux Simulator source is maintained in the develop branch in the git repository. In order to compile the latest development version, first clone the repository and switch to the develop branch:

 

$> git clone http://sammeth.net/bitbucket/
fisheye
scm/
git
barna/barna.git
$> cd barna
$> git checkout develop

 

Now switch into the barna.capacitory folder and build a distribution:

 

$> cd barna.capacitorsimulator
$> ../gradlew dist

 

When executed the first time, gradle will download a lot of dependencies, get a hot beverage, this might take a moment. The gradle script will compile the code and all dependencies, and finally a .tag.gz and a .zip file are created. You can find them in the build/distributions/ folder.These are the created bundles that contain the Flux Capacitor build Simulator build from source.

Alternatively, you can also run ../gradlew distDir, which will not compress the distribution and create a folder in build/distributions/. You can run the capacitor directly from there.

...