使用kongchen swagger-maven-plugin时,gradle task swagger不可见的类

时间:2017-07-04 12:28:43

标签: gradle swagger swagger-maven-plugin

执行gradle clean然后gradle swagger时会抛出ClassNotFoundException。如果然后再次运行gradle swagger(基本上在上一次运行中完成api构建之后),它可以正常工作。

build.gradle如下所示:

buildscript {
    repositories {
        maven { url hydraMavenRepo }
        maven { url hydraPluginsRepo }
    }
    dependencies {
        classpath "com.github.kongchen:swagger-maven-plugin:3.1.4"
    }
}

apply plugin: 'java'

configurations {
    addclasspath
}

dependencies {
    addclasspath files(project(':api:desktop-api').configurations['runtime'].files)
    addclasspath files(project(':api:desktop-api').sourceSets['main'].output)
    addclasspath files(project(':api:desktop-api').sourceSets.main.output.classesDir)

    runtime project(':api:desktop-api')
}

sourceSets {
    main {
        runtimeClasspath += files(project(':api:desktop-api').sourceSets['main'].output)
        runtimeClasspath += files(project(':api:desktop-api').sourceSets['main'].output.classesDir)
        runtimeClasspath += files(project(':api:desktop-api').configurations['runtime'].files)
    }
}


import com.github.kongchen.swagger.docgen.mavenplugin.ApiDocumentMojo
import com.github.kongchen.swagger.docgen.mavenplugin.ApiSource
import io.swagger.models.Info

task swagger(dependsOn: [':api:desktop-api:build']) {
    doLast {
        logger.info 'Swagger GenDoc...'
        project.file(reportsDir).mkdirs()

        // a trick to have all needed classes in the classpath
        def customClassLoader = new GroovyClassLoader()

        buildscript.configurations.classpath.each {
            //println it.toURI().toURL()
            customClassLoader.addURL(it.toURI().toURL())
        }

        configurations.addclasspath.each {
            customClassLoader.addURL(it.toURI().toURL())
        }

        // the same settings as in the swagger-maven-example/pom.xml
        final ApiDocumentMojo mavenTask = Class.forName('com.github.kongchen.swagger.docgen.mavenplugin.ApiDocumentMojo', true, customClassLoader).newInstance(
                apiSources: [
                        new ApiSource(
                                springmvc: false,
                                locations: ['com/vmware/vdi/hydra'],
                                schemes: ['http', 'https'],
                                host: 'vmware.com',
                                basePath: '/api',
                                info: new Info(
                                        title: "Hydra DS-REST API's",
                                        version: 'v100',
                                        description: "Hydra DS-REST API's",
                                ),
                                swaggerDirectory: reportsDir
                        )
                ]
        )
        mavenTask.execute()
        logger.info 'Swagger GenDoc task is completed'
    }
}

2 个答案:

答案 0 :(得分:0)

您的构建脚本中有几个缺陷。

您不应该依赖构建脚本依赖项中的构建内容。这是一个鸡蛋和鸡蛋的问题。您需要执行构建以获取执行构建所必需的类。如果有的话,这不能可靠地工作。

相反,您应该将它们声明为buildscript块之外的依赖项。 buildscript块仅用于构建脚本自身运行所需的依赖项,例如Gradle Tasks和Gradle Plugins或构建期间使用的类,例如swagger-maven-plugin内容正确的buildscript内容{1}}阻止。

除此之外,您还可以在配置阶段执行部分swagger(实例化,执行和打印),而不是在执行阶段执行。您在任务闭包中执行的所有操作,但在任何doFirstdoLast块之外,都会在配置阶段运行,此时构建配置并因此始终无论您实际要执行哪些任务,都不会执行无论该任务是否已经是最新的。要使最新的检查工作并节省您的时间,您需要声明所有输入,如文件和属性,这些输入可能在执行和您生成的所有输出之间发生变化,然后Gradle可以发挥其魔力,只在实际需要时执行任务

此外,您不应在构建脚本中使用println。这就像在Java程序中使用System.out.println一样。相反,您应该直接使用提供的日志记录工具,例如。 G。做logger.info 'Swagger GenDoc task is completed'

答案 1 :(得分:0)

buildscript.classloader是我一直在寻找的。

以下是有效的代码:

buildscript {
    repositories {
        maven { url mavenRepo }
    }
    dependencies {
        classpath "com.github.kongchen:swagger-maven-plugin:3.1.4"
    }
}

import com.github.kongchen.swagger.docgen.mavenplugin.ApiDocumentMojo
import com.github.kongchen.swagger.docgen.mavenplugin.ApiSource
import io.swagger.models.Info


task swagger(dependsOn: ':api:build') {
    doLast {
        logger.info 'Swagger GenDoc...'
        project.file(<dir>).mkdirs()

        FileCollection apiRuntimeFiles = files(project(':api').configurations['runtime'].files)
        apiRuntimeFiles.each {
            buildscript.classLoader.addURL(it.toURI().toURL())
        }

        FileCollection apiClassFiles =files(project(':api').sourceSets['main'].output)
        apiClassFiles.each {
            buildscript.classLoader.addURL(it.toURI().toURL())
        }

        final ApiDocumentMojo mavenTask = Class.forName('com.github.kongchen.swagger.docgen.mavenplugin.ApiDocumentMojo', true, buildscript.classLoader).newInstance(
                apiSources: [
                        new ApiSource(
                                springmvc: false,
                                locations: ['<loc>'],
                                schemes: ['http', 'https'],
                                host: '<host>',
                                basePath: '/api',
                                info: new Info(
                                        title: "REST API's",
                                        version: 'v1',
                                        description: "REST API's",
                                ),
                                swaggerDirectory: <dir>
                        )
                ]
        )
        mavenTask.execute()
        logger.info 'Swagger GenDoc task is completed'
    }
}