ReadMe.md 9.3 KB
Newer Older
M
Mike 已提交
1
<a href="http://slack.kotlinlang.org/"><img src="http://slack.kotlinlang.org/badge.svg" height="20"></a>
Z
Zalim Bashorov 已提交
2 3 4 5
[![TeamCity (simple build status)](https://img.shields.io/teamcity/http/teamcity.jetbrains.com/s/bt345.svg)](https://teamcity.jetbrains.com/viewType.html?buildTypeId=bt345&branch_Kotlin=%3Cdefault%3E&tab=buildTypeStatusDiv)
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlin/kotlin-maven-plugin.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.jetbrains.kotlin%22)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)

6 7
# Kotlin Programming Language

8
Welcome to [Kotlin](https://kotlinlang.org/)! Some handy links:
9

10 11
 * [Kotlin Site](https://kotlinlang.org/)
 * [Getting Started Guide](https://kotlinlang.org/docs/tutorials/getting-started.html)
12
 * [Try Kotlin](https://try.kotlinlang.org/)
13 14 15 16
 * [Kotlin Standard Library](https://kotlinlang.org/api/latest/jvm/stdlib/index.html)
 * [Issue Tracker](https://youtrack.jetbrains.com/issues/KT)
 * [Forum](https://discuss.kotlinlang.org/)
 * [Kotlin Blog](https://blog.jetbrains.com/kotlin/)
A
Alexander Udalov 已提交
17
 * [Follow Kotlin on Twitter](https://twitter.com/kotlin)
D
Dmitry Jemerov 已提交
18
 * [Public Slack channel](http://slack.kotlinlang.org/)
19
 * [TeamCity CI build](https://teamcity.jetbrains.com/project.html?tab=projectOverview&projectId=Kotlin)
20 21 22

## Editing Kotlin

23
 * [Kotlin IntelliJ IDEA Plugin](https://kotlinlang.org/docs/tutorials/getting-started.html)
24
 * [Kotlin Eclipse Plugin](https://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
25
 * [Kotlin TextMate Bundle](https://github.com/vkostyukov/kotlin-sublime-package)
26

27 28 29 30
## Build environment requirements

In order to build Kotlin distribution you need to have:

Z
Zalim Bashorov 已提交
31
- Apache Ant 1.9.4 and higher
32 33 34
- JDK 1.6, 1.7 and 1.8
- Setup environment variables as following:

35
        JAVA_HOME="path to JDK 1.8"
36 37 38 39
        JDK_16="path to JDK 1.6"
        JDK_17="path to JDK 1.7"
        JDK_18="path to JDK 1.8"

40 41
## Building

42
To build this project, first time you try to build you need to run this:
43 44 45 46 47

    ant -f update_dependencies.xml

which will setup the dependencies on

48 49
* `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.
50 51 52 53

Then, you need to run

    ant -f build.xml
J
Jason Yeo 已提交
54

55
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
56
[ANT_OPTS](https://web.liferay.com/community/wiki/-/wiki/Main/Ant+opts).
57

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

60 61 62 63
    ./gradlew build install
    mvn install

> Note: on Windows type `gradlew` without the leading `./`
64

65
Refer to [libraries/ReadMe.md](libraries/ReadMe.md) for details.
66

D
Dmitry Jemerov 已提交
67
## Working with the project in IntelliJ IDEA
68

D
Dmitry Jemerov 已提交
69
The [root kotlin project](https://github.com/JetBrains/kotlin) already has an IntelliJ IDEA project, you can just open it in IntelliJ IDEA.
70

71 72 73 74 75
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

A
Andrey Breslav 已提交
76 77 78 79
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.

80
### <a name="installing-plugin"></a> Installing the latest Kotlin plugin
81

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

84
You probably want to have locally the same version of plugin that build server is using for building.
D
Dmitry Jemerov 已提交
85
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.
86

87 88 89 90
To keep the plugin version in sync with the rest of the team and our [Continuous Integration server](https://teamcity.jetbrains.com/project.html?projectId=Kotlin&tab=projectOverview)
you should setup IDEA to update the plugin directly from the build server.

Open:
91 92 93 94 95

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

and add the following URL to your repositories:

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

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.
99

100 101 102 103 104 105 106 107 108 109 110 111
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](https://intellij-support.jetbrains.com/hc/en-us/articles/207240985-Changing-IDE-default-directories-used-for-config-plugins-and-caches-storage), 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](https://github.com/JetBrains/kotlin/tree/master/libraries) to then work with the various kotlin libraries etc.

112 113
# Contributing

114
We love contributions! There's [lots to do on Kotlin](https://youtrack.jetbrains.com/issues/KT) and on the
115
[standard library](https://youtrack.jetbrains.com/issues/KT?q=%23Kotlin%20%23Unresolved%20and%20(links:%20KT-2554,%20KT-4089%20or%20%23Libraries)) so why not chat with us
D
Dmitry Jemerov 已提交
116 117
about what you're interested in doing? Please join the #kontributors channel in [our Slack chat](http://kotlinslackin.herokuapp.com/)
and let us know about your plans.
118

119
If you want to find some issues to start off with, try [this query](https://youtrack.jetbrains.com/issues/KT?q=tag:%20%7BUp%20For%20Grabs%7D%20%23Unresolved) which should find all Kotlin issues that marked as "up-for-grabs".
120 121 122

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

123
A nice gentle way to contribute would be to review the [standard library docs](https://kotlinlang.org/api/latest/jvm/stdlib/index.html)
D
Dmitry Jemerov 已提交
124
and find classes or functions which are not documented very well and submit a patch.
125

D
Dmitry Jemerov 已提交
126
In particular it'd be great if all functions included a nice example of how to use it such as for the
127 128
[`hashMapOf()`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/hash-map-of.html) function.
This is implemented using the [`@sample`](https://github.com/JetBrains/kotlin/blob/1.1.0/libraries/stdlib/src/kotlin/collections/Maps.kt#L91)
129
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.
130 131 132 133

Also the [JavaScript translation](https://github.com/JetBrains/kotlin/blob/master/js/ReadMe.md) could really use your help. See the [JavaScript contribution section](https://github.com/JetBrains/kotlin/blob/master/js/ReadMe.md) for more details.


134 135
## If you want to work on the compiler

D
Dmitry Jemerov 已提交
136
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
137

138 139
* download a recent [IntelliJ IDEA](https://www.jetbrains.com/idea/?fromMenu#chooseYourEdition), Community edition is enough
* [install the Kotlin plugin](#installing-plugin)
140 141 142 143 144 145 146 147 148 149 150
* open the [root kotlin project](https://github.com/JetBrains/kotlin) in IDEA (opening the kotlin directory)

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

151 152
* download a recent [IntelliJ IDEA](https://www.jetbrains.com/idea/?fromMenu#chooseYourEdition), Community edition is enough
* [install the Kotlin plugin](#installing-plugin)
D
Dmitry Jemerov 已提交
153
* open the [kotlin libraries project](https://github.com/JetBrains/kotlin/tree/master/libraries)
154 155 156 157

Then build via

    cd libraries
158
    ./gradlew build install
159
    mvn install
160 161
    
> Note: on Windows type `gradlew` without the leading `./`
162

163
Some of the code in the standard library is created by generating code from templates. See the [README](libraries/stdlib/ReadMe.md) in the stdlib section for how run the code generator. The existing templates can be used as examples for creating new ones.
164

D
Dmitry Jemerov 已提交
165
## Submitting patches
166

167 168
The best way to submit a patch is to [fork the project on github](https://help.github.com/articles/fork-a-repo/) then send us a
[pull request](https://help.github.com/articles/creating-a-pull-request/) via [github](https://github.com).
169

J
Jason Yeo 已提交
170
If you create your own fork, it might help to enable rebase by default
I
imknown J. Kimu 已提交
171 172 173 174 175
when you pull by executing
``` bash
git config --global pull.rebase true
```
This will avoid your local repo having too many merge commits
J
Jason Yeo 已提交
176
which will help keep your pull request simple and easy to apply.
177 178 179

## Commit comments

M
Mikhail Glukhikh 已提交
180
If you include in your comment this text (where KT-1234 is the Issue ID in the [Issue Tracker](https://youtrack.jetbrains.com/issues/KT)), the issue will get automatically marked as fixed.
181 182

    #KT-1234 Fixed