An open API service indexing awesome lists of open source software.

https://github.com/xpdojo/groovy

Apache Groovy is a powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax.
https://github.com/xpdojo/groovy

groovy java jvm

Last synced: 8 months ago
JSON representation

Apache Groovy is a powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax.

Awesome Lists containing this project

README

          

# Groovy

## 설치

`groovy` 설치 전 `java` 설치가 필요하다.

```sh
sdk list java
sdk install java 17.0.4-zulu
sdk use java 17.0.4-zulu
```

```sh
java --version
# openjdk 17.0.4 2022-07-19 LTS
```

```sh
sdk list groovy
sdk install groovy 4.0.5
sdk use groovy 4.0.5
```

```sh
groovy --version
# Groovy Version: 4.0.5 JVM: 17.0.4 Vendor: Azul Systems, Inc. OS: Linux
```

```sh
sdk current
# groovy: 4.0.5
# java: 17.0.4-zulu
```