IntelliJ

IntelliJ IDEA Community Edition – a free IDE built on open-source code that provides essential features for Java and Kotlin enthusiasts.

   1 cd ~
   2 wget https://download.jetbrains.com/idea/ideaIC-2024.1.4.tar.gz
   3 tar xvzf ideaIC-2024.1.4.tar.gz
   4 # Plugins, python community edition plugin
   5 

Community edition has support for

Wheel mouse and font size

Custom font size

Editor font size

Maven

Attach debugger to mvn test

Listens on port 5005.

IntelliJ

   1 mvn test -Dmaven.surefire.debug=true
   2 # run specific test in test class
   3 mvn test -Dmaven.surefire.debug=true -Dtest=”TestClass#testMethod”

Other steps:

Wraps

Plugins

Markdown plugin has extension for PlantUML with

```plantuml
@startuml
@enduml
```

IntelliJ (last edited 2024-07-28 15:27:27 by vitor)