Files
kotlin-fork/libraries
Pavel V. Talanov 8496c535aa Replace ModuleDescriptorImpl implementation
Change the way modules are configured:
Add dependencies on other modules instead of adding additional package fragment providers
Refactor related code
Drop DependencyKind
Hide common new module creation in CliLightClassGenerationSupport
2014-07-31 21:25:49 +04:00
..
2014-03-20 20:12:57 +04:00
2014-03-19 20:25:11 +04:00

Kotlin Libraries

This area of the project is all written in Kotlin and assumes you've got the Kotlin IDEA plugin installed.

This area of the project uses Maven for its build. To build install a recent Maven distribution then type:

mvn install

For more details see the Getting Started Guide

Be sure to build Kotlin compiler before launching Maven: see ReadMe.md at root level, section "Building"

If your maven build is failing with Out-Of-Memory errors, set JVM options for maven in MAVEN_OPTS environment variable like this:

MAVEN_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m"