gretty appStart失败,未知属性'classesDirs'

时间:2017-09-20 11:58:04

标签: java gradle jetty gretty

我正在尝试使用gradle gretty插件构建Java Servlet(gradle版本3.4)。 我有一个依赖于另一个项目databaseprovider:1.0-SNAPSHOT(包括与数据库的连接和一些弹簧定义......)。 当我运行任务“gradle war”时,.war文件与WEB-INF / lib中的所有依赖项一起正确构建。 但是当我尝试以“gradle appStart”开头时,我遇到了以下问题:

  

出了什么问题:任务':appStart'执行失败。无法得到   类型主要类的未知属性“classesDirs”   org.gradle.api.internal.tasks.DefaultSourceSetOutput。

     

引起:groovy.lang.MissingPropertyException:无法得知   属于主类的属性'classesDirs'   org.gradle.api.internal.tasks.DefaultSourceSetOutput。

没有依赖数据库提供者:1.0-SNAPSHOT jetty启动没有问题:

  

INFO Jetty 9.2.22.v20170606启动并侦听端口8080

的build.gradle:

buildscript {
  repositories {
    jcenter()
  }

  dependencies {
    classpath "org.akhikhl.gretty:gretty:+"
    classpath "org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE"
  }
}

apply plugin:'java'
apply plugin: 'eclipse'
apply plugin: 'war'
apply from: 'https://raw.github.com/akhikhl/gretty/master/pluginScripts/gretty.plugin'

repositories {
    maven {
        url "http://..."
    }
    mavenLocal()
}

dependencies {
    compile('databaseprovider:1.0-SNAPSHOT'){
        changing=true
    }
}

gretty {
    httpPort = 8080
    contextPath = '/'
    servletContainer = 'jetty9'    
}

来自databaseprovider的build.gradle:

buildscript {
    repositories {
      maven {
          url "http://..."
      }
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE")
    }
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
apply from: 'liquibase.gradle'


jar {
    baseName = 'databaseprovider'
    version =  '1.0-SNAPSHOT'
}

repositories {
    maven {
        url "http://..."
    }
    mavenLocal()
    jcenter()
}

configurations.all {
    resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
    compile("org.springframework.boot:spring-boot-starter-data-jpa:1.4.0.RELEASE")
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version:'1.10.2.RELEASE'
    compile group: 'org.hibernate', name: 'hibernate-c3p0', version: '5.0.9.Final'
    testRuntime group: 'com.h2database', name: 'h2', version: '1.4.192'
    compile group: 'ch.qos.logback', name: 'logback-classic', version:'1.0.13'
    compile group: 'ch.qos.logback', name: 'logback-core', version:'1.0.13'
    compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.5'
    compile group: 'org.slf4j', name: 'jcl-over-slf4j', version:'1.7.5'
    compile group: 'org.slf4j', name: 'log4j-over-slf4j', version:'1.7.5'
    compile group: 'org.reflections', name: 'reflections', version: '0.9.11'
    compile (group: 'com.mattbertolini', name: 'liquibase-slf4j', version: "1.2.1")
    compile (group: 'org.liquibase', name: 'liquibase-core', version: "3.5.3")
    compile group: 'javax.validation', name: 'validation-api', version: '1.1.0.Final'
    testCompile("junit:junit")
    runtime("mysql:mysql-connector-java:5.1.39")
    testCompile("org.springframework:spring-test")
}

2 个答案:

答案 0 :(得分:2)

我能够通过添加gretty版本来解决问题:

我在build.gradle中更改了类路径

  

classpath“org.akhikhl.gretty:gretty:+”

  

classpath“org.akhikhl.gretty:gretty:1.4.2”

(兼容版本到gradle 3.4)jetty开始没有例外。

答案 1 :(得分:0)

当我遇到此问题时,我通过Google搜索错误消息找到了这个问题。对我来说,我在this Github thread找到了答案。基本上,通过将我的Gradle版本升级到4.8,我能够解决问题。