You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**OPTIONAL:** Maven artifact distribution is built separately, go into `libraries` directory after building the compiler and run:
64
+
## Important gradle tasks
62
65
63
-
./gradlew build install
64
-
mvn install
66
+
-`clean` - clean build results
67
+
-`dist` - assembles the compiler distribution into `dist/kotlinc/` folder
68
+
-`ideaPlugin` - assembles the Kotlin IDEA plugin distribution into `dist/artifacts/Kotlin` folder
69
+
-`install` - build and install all public artifacts into local maven repository
70
+
-`runIde` - build IDEA plugin and run IDEA with it
71
+
-`coreLibsTest` - build and run stdlib, reflect and kotlin-test tests
72
+
-`gradlePluginsTest` - build and run gradle plugin tests
73
+
-`compilerTest` - build and run all compiler tests
74
+
-`ideaPluginTest` - build and run all IDEA plugin tests
65
75
66
-
> Note: on Windows type `gradlew` without the leading `./`
76
+
**OPTIONAL:** Some artifacts, mainly maven plugin ones, are built separately by maven: go into `libraries` directory after building the compiler and run:
77
+
78
+
mvn install
67
79
68
80
Refer to [libraries/ReadMe.md](libraries/ReadMe.md) for details.
69
81
70
82
## Working with the project in IntelliJ IDEA
71
83
72
-
The [root kotlin project](https://github.com/JetBrains/kotlin)already has an IntelliJ IDEA project, you can just open it in IntelliJ IDEA.
84
+
The [root kotlin project](https://github.com/JetBrains/kotlin)should be imported into IDEA as gradle project.
73
85
74
-
You may need to set the Project SDK (`File -> Project Structure -> Project`).
0 commit comments