forked from microsoft/WSL-DistroLauncher
-
Notifications
You must be signed in to change notification settings - Fork 105
IntelliJ 2021 Java
Carlos Rafael Ramirez edited this page Mar 7, 2021
·
7 revisions
Recently JetBrains shipped the IntelliJ 2021.1 EAP with an interesting addition. The possibility to compile and run Java programs whose source code is in WSL2. Everything from the Windows version of the IDE.
https://blog.jetbrains.com/idea/2021/01/intellij-idea-2021-1-eap-1/
https://blog.jetbrains.com/idea/2021/02/intellij-idea-2021-1-eap-5/
Let's prepare Pengwin for run Java project from IntelliJ:
- Install SDK Man from pengwin-setup. SDK Man is a very versatile distribution manager, where you can install and update not only any supported Java version but also Ant, Gradle, Maven, and many other tools. (https://sdkman.io/sdks)
$ pengwin-setup update
$ pengwin-setup install PROGRAMMING JAVA
$ source /etc/profile.d/sdkman.sh
- List the JVM available and install one of them or simply install the default one.
$ sdk list java
$ sdk install java 11.0.3.hs-adpt # For example
Or the default
$ sdk install java
- Create a new Java project. You can choose Java, Gradle, or Maven.
- Choose the just installed JDK from the drop-down
- Remember to create the project in Pengwin home: \wsl$\WLinux\home\user
- Now refresh the Gradle project (or maven) in IntelliJ and you are ready to start coding, at the IO speed of Linux on Windows: