如何在 Intellij Gradle 项目中下载 Griffon 发行版?

How to download Griffon distribution in Intellij Gradle project?

我正在尝试启动一个 Griffon 项目。 Griffon 存储库可从 bintray 获得。我在 Intellij 中创建了一个 Gradle 项目,并将提供的 maven 存储库添加到 build.gradle 文件中。但是没有生成项目结构。我需要知道如何在 Intellij 中正确创建 Griffon 项目。我正在添加我编辑的 build.gradle 文件中的代码。

apply plugin: 'java'

sourceCompatibility = 1.5
version = '1.0'

repositories {
mavenCentral()

   maven {
      url  "http://dl.bintray.com/griffon/griffon"
  }
}

dependencies {
 testCompile group: 'junit', name: 'junit', version: '4.11'
}

请按照 http://griffon-framework.org/ and http://griffon-framework.org/tutorials/1_getting_started.html 中的说明进行操作。

请注意,IntelliJ 包含一个可与 Griffon 1.x 一起使用的 Griffon 插件,但不能 与 Griffon 2.x 一起使用。 Griffon 2 可以 opened/imported 作为普通 Gradle 或 Maven 项目。