#Chrysalix Projects
Chrysalix is a set of libraries offering pluggable support for transforming data from one form to another.
Have a question? Want to find out more about Chrysalix? Hop into our IRC chat room at irc.freenode.net#chrysalix and talk to our community of contributors and users.
Chrysalix is open source, and we welcome anybody that wants to participate and contribute! If you want to fix a bug or make any changes, just submit them via a pull-request from your fork. Also, make sure to read our developer documentation.
If you want to report a bug or request an enhancement, please log a new issue in the GitHub issue tracker describing the bug or new feature.
We use Maven to build our software. The following command compiles all the code, installs the JARs into your local Maven repository, and runs all of the unit tests:
$ mvn clean install
Running all of the tests may take a while so, alternatively, you can specify -Dskip.integration.tests=true
to skip all integration tests, which generally take longer to run:
$ mvn clean install -Dskip.integration.tests=true
You may also skip unit tests by adding -Dskip.unit.tests=false
:
$ mvn clean install -Dskip.unit.tests=true