将其他源集添加到Gretty类路径

时间:2016-01-29 07:49:53

标签: gradle gretty

我的项目包含jarwar模块。 jar模块包含源集maingenerated

我的jar模块gradle.build定义了源集,如下所示:

sourceSets {
    generated
    main {
        compileClasspath += sourceSets.generated.output  // adds the sourceSet to the compileClassPath
        runtimeClasspath += sourceSets.generated.output  // adds the sourceSet to the runtimeClasspath
    }
}

并将两个源集的输出放入jar中。

jar {
    from sourceSets.generated.output
    from sourceSets.main.output
}

在我的war模块中,我想使用Gretty在构建中运行它。 build.gradle文件看起来像这样。

apply plugin: 'war'
apply from: "${rootDir}/gradle/gretty.gradle"

gretty {
    // supported values:
    // 'jetty7', 'jetty8', 'jetty9', 'tomcat7', 'tomcat8'
    servletContainer = 'tomcat8'

    httpPort = 8081
    contextPath = '/wbc'
    realm 'wbc-realm'
    realmConfigFile 'tomcat-users.xml'
}

dependencies {
    compile project(':interfaces')

    compile "org.atmosphere:atmosphere-runtime:${atmosphereVersion}"
    compile "org.springframework:spring-web:${springVersion}"
    compile "javax.servlet:javax.servlet-api:${servletVersion}"

    runtime "org.slf4j:slf4j-log4j12:${slf4jVersion}"
    runtime "log4j:log4j:1.2.17"
}

每当我使用gradle --daemon clean appRun启动Gretty时,由于ClassNotFoundException,Gretty无法启动Tomcat。该类位于generated模块的jar源集中。如何告诉gretty将其添加到类路径?

1 个答案:

答案 0 :(得分:0)

尝试将生成的输出目录添加到gretty classPath:

gretty {
  ...
  sourceSets.generated.output.each { classPath it }
}