2

マスターbuild.gradleファイルに依存関係セクションがあります

subprojects {
   dependencies {
   }
}

次に、サブプロジェクトに1つ追加します。これは、1つだけが2つのローカル依存関係を使用しており、以下の失敗ですべてが壊れているためです。

dependencies {
    compile fileTree(dir: 'play-1.2.4/framework/lib', include: '*.jar')
    compile fileTree(dir: 'play-1.2.4/framework', include: '*.jar')
}

未解決の状態でない構成を変更することはできません!

このエラーをグーグルで検索すると多くの結果が得られますが、これを修正する方法を解読できないようです。

注:代わりに依存関係を注入した場合、これは機能しました....それはなぜですか?

project(':webserver') {
    dependencies {
        compile fileTree(dir: 'play-1.2.4/framework/lib', include: '*.jar')
        compile fileTree(dir: 'play-1.2.4/framework', include: '*.jar')
    }
}

重要な注意:実際のマスターbuild.gradleは、次のものをインポートする1​​行です(「master」フォルダーを機能させることができなかったため)。それが問題になるのでしょうか?

完全なマスターbuild.gradleファイル

allprojects {
    apply plugin: 'java'
    apply plugin: 'eclipse'

    buildDir = 'output'

    task hello << { task -> println "I'm $task.project.name" }
    build << { task -> println "MASTER: I'm building now classpath=$sourceSets.main.compileClasspath.files" }
}

subprojects {

    version = 'Developer-Build'
    project.ext.genLibDir = file('lib')
    project.ext.fixedLibDir = file('libother')

    repositories {
         mavenCentral()
    }

    //configurations.compile {
    //  exclude group: 'javax.jms',        module: 'jms'
    //  exclude group: 'com.sun.jdmk',     module: 'jmxtools'
    //  exclude group: 'com.sun.jmx',      module: 'jmxri'
    //}

    dependencies {
        compile group: 'org.hibernate',   name: 'hibernate-entitymanager', version: '4.1.4.Final'
        compile group: 'org.slf4j',       name: 'slf4j-api',               version: '1.6.6'
        compile group: 'org.slf4j',       name: 'log4j-over-slf4j',        version: '1.6.6'
        compile group: 'ch.qos.logback',  name: 'logback-core',            version: '1.0.6'
        compile group: 'joda-time',       name: 'joda-time',               version: '2.1'
        compile group: 'com.google.inject',name: 'guice',                  version: '3.0'
        compile group: 'com.google.protobuf',name: 'protobuf-java',        version: '2.4.1'


        //to be erased soon
        compile group: 'commons-configuration',name:'commons-configuration',version: '1.8'
        compile group: 'org.jboss.netty', name: 'netty',                   version: '3.2.7.Final'

        //compile group: 'org.asteriskjava',name: 'asterisk-java',         version: '1.0.0.M3'            
        compile fileTree(dir: project.ext.fixedLibDir, include: '*.jar')

    }

    task('copyJars') { 
        ext.collection = files { genLibDir.listFiles() }
        delete ext.collection
        copy { from configurations.compile into genLibDir }
        copy { from fixedLibDir into genLibDir }
    }

    task('setupAll', dependsOn: ['copyJars','eclipse']) {
        description = 'Update jars from remote repositories and then fix eclipse classpath for master project'

    }

    hello << {println "- I depend on stserver"}

    build << { println "subproject:source sets=$sourceSets.main.java.srcDirs" }
}

task release << { println "putting together release" }

//TODO: have a release task AND if version is null when running the release task
//throw an exception telling the user to pass in a version with "./build -Dversion=xxxx"
//The automated build will call the release task with a version number like that
gradle.taskGraph.whenReady {taskGraph ->
    if (taskGraph.hasTask(release) && version == 'Developer-Build') {
        throw new StopExecutionException("You must specify -Dversion=<some version> to run the release task")
    } else {
        version = '1.0-SNAPSHOT'
    }
}

完全な子ウェブサーバーbuild.gradleファイル

sourceSets.main{
  java.srcDirs = ['app']
}

build << { println "source sets=$sourceSets.main.java.srcDirs" }

hello << {println "- Do something specific xxxx"}

    dependencies {
        compile fileTree(dir: 'play-1.2.4/framework/lib', include: '*.jar')
        compile fileTree(dir: 'play-1.2.4/framework', include: '*.jar')
    }

    eclipse {
    }

ありがとう、ディーン

4

1 に答える 1

0

compileこれは、構成時に構成を解決する(つまり、ファイルを要求する)他のコードがあることを意味します。タスクアクションの外のconfigurations.compile.each { ... }ようもの。構成が解決された後は、それ以上の依存関係を追加することはできません。通常、構成時に構成を解決することは望ましくありません(不要です)。特に、ビルドが遅くなります。

Gradleビルドの個別のフェーズ(初期化/構成/実行)の詳細については、 Gradleユーザーガイドを参照してください。

于 2012-06-22T20:11:22.740 に答える