Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grails/grails-core
The Grails Web Application Framework
https://github.com/grails/grails-core
grails groovy
Last synced: 10 days ago
JSON representation
The Grails Web Application Framework
- Host: GitHub
- URL: https://github.com/grails/grails-core
- Owner: grails
- License: apache-2.0
- Created: 2010-02-10T23:57:57.000Z (over 14 years ago)
- Default Branch: 7.0.x
- Last Pushed: 2024-10-23T23:20:04.000Z (16 days ago)
- Last Synced: 2024-10-24T04:32:00.346Z (15 days ago)
- Topics: grails, groovy
- Language: HTML
- Homepage: http://grails.org
- Size: 341 MB
- Stars: 2,783
- Watchers: 194
- Forks: 950
- Open Issues: 327
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- useful-java-links - Grails - Grails is a framework used to build web applications with the Groovy programming language. The core framework is very extensible and there are numerous plugins available that provide easy integration of add-on features. https://grails.org/ License: [Apache 2](http://www.apache.org/licenses/LICENSE-2.0) , [![GitHub stars](https://img.shields.io/github/stars/grails/grails-core.svg?style=social&label=Star&maxAge=2592000)](https://github.com/grails/grails-core). ![business friendly license](https://github.com/Vedenin/useful-java-links/blob/master/img/business-friendly.png?raw=true) (I. Development / 2. Web development)
README
# Grails
[![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.grails.org/scans)
[![Java CI](https://github.com/grails/grails-core/actions/workflows/gradle.yml/badge.svg?event=push)](https://github.com/grails/grails-core/actions/workflows/gradle.yml)
[![Groovy Joint Validation Build](https://github.com/grails/grails-core/actions/workflows/groovy-joint-workflow.yml/badge.svg?event=push)](https://github.com/grails/grails-core/actions/workflows/groovy-joint-workflow.yml)### Getting help
Join the discussions on [Slack](https://slack.grails.org/)
Ask questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/grails)## What is Grails?
[Grails](https://grails.org/) is a framework used to build web applications with the [Groovy](https://groovy-lang.org/) programming language. The core framework is very extensible and there are numerous [plugins](https://plugins.grails.org/) available that provide easy integration of add-on features.Grails development is led by the [Grails Foundation](https://grails.org/foundation/) and is sponsored by [Object Computing Inc.](https://objectcomputing.com/) in St. Louis Missouri. Please contact <[email protected]> for support inquiries.
## Getting Started
You need a Java Development Kit (JDK) installed, but it is not necessary to install Groovy because it's bundled with the Grails distribution.
To install Grails, visit https://grails.org/download.html and download the version you would like to use. Set a `GRAILS_HOME` environment variable to point to the root of the extracted download and add `GRAILS_HOME/bin` to your executable `PATH`. Then in a shell, type the following:
grails create-app sampleapp
cd sampleapp
grails run-appTo build Grails, clone this GitHub repository and execute the install Gradle target:
git clone https://github.com/grails/grails-core.git
cd grails-core
./gradlew installIf you encounter out of memory errors when trying to run the install target, try adjusting Gradle build settings. For example:
export GRADLE_OPTS="-Xmx2G -Xms2G -XX:NewSize=512m -XX:MaxNewSize=512m"
## Performing a Release
See [RELEASE.md](RELEASE.md).
## License
Grails and Groovy are licensed under the terms of the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html).
***
YourKit is kindly supporting Grails open source projects with its full-featured Java Profiler.
YourKit, LLC is the creator of innovative and intelligent tools for profiling
Java and .NET applications. Take a look at YourKit's leading software products:
[YourKit Java Profiler](https://www.yourkit.com/java/profiler/features/) and
[YourKit .NET Profiler](https://www.yourkit.com/.net/profiler/features/).## Dependencies
**Gradle Plugins**
* Gradle Nexus Staging Plugin [Github](https://github.com/Codearte/gradle-nexus-staging-plugin)