具有 Gradle Maven Repo 依赖项的 Moqui 组件

Moqui Component with Gradle Maven Repo Dependencies

当前是否可以在构建 Moqui 期间从 Maven 存储库导入依赖项?下面是我的组件中的 build.gradle,但我在日志中没有看到任何提示它下载任何内容的内容?

感谢您的帮助!

山姆

apply plugin: 'groovy'

sourceCompatibility = '1.7'

def moquiDir = file(projectDir.absolutePath + '/../../..')
def frameworkDir = file(moquiDir.absolutePath + '/framework')

repositories {
    mavenCentral()
}

dependencies {
    compile group: 'com.braintreepayments.gateway', name: 'braintree-java', version: '2.45.0'
}

这是一个非常基本的问题,我需要将目录添加到 settings.gradle 并且一切正常。

include 'framework', 'runtime/base-component/example', 'runtime/mantle/mantle-usl', 'runtime/component/braintree'

我原以为组件中的屏幕、实体等会自动选取我的 gradle 脚本。