Files
kotlin-fork/libraries
Pavel V. Talanov a21abeba33 Fix kotlin-gradle-plugin to correctly process java source files
Do not remove outdirectory from cp in maven: this is needed for gradle-plugin build to see files compiled by gmaven
    this may cause problems with running mvn install without clean for kotlin
Remove special magic with groovy-output in gradle-plugin pom.xml
2015-04-16 16:40:55 +03:00
..
2014-10-13 21:25:55 +04:00
2014-10-13 21:25:55 +04:00
2015-03-19 19:59:47 +01: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"