Update ChangeLog for 1.1.4
1 file changed
tree: 858f47795bd1f47d10dbf7043ad8756d8b2aa4d7
  1. .idea/
  2. android-studio/
  3. annotations/
  4. ant/
  5. build-common/
  6. compiler/
  7. core/
  8. eval4j/
  9. generators/
  10. gradle/
  11. grammar/
  12. idea/
  13. idea-runner/
  14. j2k/
  15. jps-plugin/
  16. js/
  17. lib/
  18. libraries/
  19. license/
  20. non-compiler-tests/
  21. plugins/
  22. resources/
  23. spec-docs/
  24. ultimate/
  25. .gitattributes
  26. .gitignore
  27. build.xml
  28. ChangeLog.md
  29. common.xml
  30. description
  31. download_android_sdk.xml
  32. gradlew
  33. gradlew.bat
  34. Kotlin.iml
  35. node_utils.xml
  36. ReadMe.md
  37. TeamCityBuild.xml
  38. TeamCityRelay.xml
  39. update_dependencies.xml
  40. upload_plugins.gradle
ReadMe.md

TeamCity (simple build status) Maven Central GitHub license

Kotlin Programming Language

Welcome to Kotlin! Some handy links:

Editing Kotlin

Build environment requirements

In order to build Kotlin distribution you need to have:

  • Apache Ant 1.9.4 and higher

  • JDK 1.6, 1.7 and 1.8

  • Setup environment variables as following:

      JAVA_HOME="path to JDK 1.8"
      JDK_16="path to JDK 1.6"
      JDK_17="path to JDK 1.7"
      JDK_18="path to JDK 1.8"
    

Building

To build this project, first time you try to build you need to run this:

ant -f update_dependencies.xml

which will setup the dependencies on

  • intellij-core is a part of command line compiler and contains only necessary APIs.
  • idea-full is a full blown IntelliJ IDEA Community Edition to be used in the plugin module.

Then, you need to run

ant -f build.xml

which will build the binaries of the compiler and put them into the dist directory. You may need to increase the heap size for Ant using ANT_OPTS.

OPTIONAL: Maven artifact distribution is built separately, go into libraries directory after building the compiler and run:

./gradlew build install
mvn install

Note: on Windows type gradlew without the leading ./

Refer to libraries/ReadMe.md for details.

Working with the project in IntelliJ IDEA

The root kotlin project already has an IntelliJ IDEA project, you can just open it in IntelliJ IDEA.

You may need to set the Project SDK (File -> Project Structure -> Project). You may also need to add tools.jar to your SDK:

File -> Project Structure -> SDKs -> <Your JDK> -> Classpath

then choose the tools.jar in the JDK's lib directory.

If you are not dealing with Android, you may need to disable the Android Plugin in order to compile the project.

Installing the latest Kotlin plugin

Since Kotlin project contains code written in Kotlin itself, you will also need a Kotlin plugin to build the project in IntelliJ IDEA.

You probably want to have locally the same version of plugin that build server is using for building. As this version is constantly moving, the best way to always be updated is to let IntelliJ IDEA notify you when it is time to renew your plugin.

To keep the plugin version in sync with the rest of the team and our Continuous Integration server you should setup IDEA to update the plugin directly from the build server.

Open:

Preferences -> Plugins -> Browse Repositories -> Manage Repositories...

and add the following URL to your repositories:

https://teamcity.jetbrains.com/guestAuth/repository/download/bt345/bootstrap.tcbuildtag/updatePlugins.xml

Then update the list of plugins in “Browse Repositories”, you'll see two versions of Kotlin there, install the one with the higher version number.

If you want to keep an IntelliJ IDEA installation with that bleeding edge Kotlin plugin for working Kotlin project sources only separate to your default IntelliJ IDEA installation with the stable Kotlin plugin see this document, which describes how to have multiple IntelliJ IDEA installations using different configurations and plugin directories.

Compiling and running

From this root project there are Run/Debug Configurations for running IDEA or the Compiler Tests for example; so if you want to try out the latest and greatest IDEA plugin

  • VCS -> Git -> Pull
  • Run IntelliJ IDEA
  • a child IntelliJ IDEA with the Kotlin plugin will then startup
  • you can now open the kotlin libraries project to then work with the various kotlin libraries etc.

Contributing

We love contributions! There‘s lots to do on Kotlin and on the standard library so why not chat with us about what you’re interested in doing? Please join the #kontributors channel in our Slack chat and let us know about your plans.

If you want to find some issues to start off with, try this query which should find all Kotlin issues that marked as “up-for-grabs”.

Currently only committers can assign issues to themselves so just add a comment if you're starting work on it.

A nice gentle way to contribute would be to review the standard library docs and find classes or functions which are not documented very well and submit a patch.

In particular it‘d be great if all functions included a nice example of how to use it such as for the hashMapOf() function. This is implemented using the @sample macro to include code from a test function. The benefits of this approach are twofold; First, the API’s documentation is improved via beneficial examples that help new users and second, the code coverage is increased.

Also the JavaScript translation could really use your help. See the JavaScript contribution section for more details.

If you want to work on the compiler

The Kotlin compiler is written in Java and Kotlin (we gradually migrate more and more of it to pure Kotlin). So the easiest way to work on the compiler or IntelliJ IDEA plugin is

You can now run the various Run/Debug Configurations such as

  • IDEA
  • All Compiler Tests
  • All IDEA Plugin Tests

If you want to work on the Kotlin libraries

Then build via

cd libraries
./gradlew build install
mvn install

Note: on Windows type gradlew without the leading ./

Some of the code in the standard library is created by generating code from templates. See the README in the stdlib section for how run the code generator. The existing templates can be used as examples for creating new ones.

Submitting patches

The best way to submit a patch is to fork the project on github then send us a pull request via github.

If you create your own fork, it might help to enable rebase by default when you pull by executing

git config --global pull.rebase true

This will avoid your local repo having too many merge commits which will help keep your pull request simple and easy to apply.

Commit comments

If you include in your comment this text (where KT-1234 is the Issue ID in the Issue Tracker), the issue will get automatically marked as fixed.

#KT-1234 Fixed