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.
- Host: GitHub
- URL: https://github.com/xpdojo/groovy
- Owner: xpdojo
- License: gpl-3.0
- Created: 2022-09-14T18:39:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-15T18:33:01.000Z (over 3 years ago)
- Last Synced: 2025-02-06T15:53:26.681Z (about 1 year ago)
- Topics: groovy, java, jvm
- Language: Groovy
- Homepage: https://groovy-lang.org/
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```