338bc2f9ec
KDoc was confused because now there are two package fragments for package 'kotlin' (built-ins and stdlib). KDoc's KPackage now has a list of descriptors, not only one. This fixes missing documentation for top-level members in package 'kotlin' in the apidoc #KT-2521 Fixed
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 lauching 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"