Głównym pomysłem jest dodanie Swagger-maven-plugin i swoich klas Javy do ścieżki klasy dla buildScript aby móc je wykorzystać w Gradle, coś takiego:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath files(project(':swagger-maven-example').configurations['runtime'].files)
classpath files(project(':swagger-maven-example').sourceSets['main'].output.classesDir)
}
}
gdzie pierwsza linia w zależności pobierają bibliotekę poboczną z projektu podrzędnego, a druga linia pobiera klasy, które powinny zawierać adnotacje typu "swagger".
Po tym można powołać plugin maven w Gradle jako prosty klasy Java:
// a trick to have all needed classes in the classpath
def customClass = new GroovyClassLoader()
buildscript.configurations.classpath.each {
// println it.toURI().toURL()
customClass.addURL(it.toURI().toURL())
}
final ApiDocumentMojo mavenTask = Class.forName('com.github.kongchen.swagger.docgen.mavenplugin.ApiDocumentMojo',true, customClass).newInstance(
apiSources: [
new ApiSource(
springmvc: false,
locations: ['com/github/kongchen/swagger/sample/wordnik/resource'],
schemes: ['http', 'https'],
host: 'petstore.swagger.wordnik.com',
basePath: '/api',
info: new Info(
title: 'Swagger Maven Plugin Sample',
version: 'v1',
description: 'This is a sample for swagger-maven-plugin',
termsOfService: 'http://www.github.com/kongchen/swagger-maven-plugin',
contact: new Contact(
email: '[email protected]',
name: 'Kong Chen',
url: 'http://kongch.com'
),
license: new License(
url: 'http://www.apache.org/licenses/LICENSE-2.0.html',
name: 'Apache 2.0'
)
),
outputPath: file("${buildDir}/swagger/document.html").path,
swaggerDirectory: file("${buildDir}/swagger/swagger-ui").path,
templatePath: file("${project(':swagger-maven-example').projectDir}/templates/strapdown.html.hbs")
)
]
)
// maven plugin
mavenTask.execute()
Here można znaleźć ten przykład.
Nadal się nad tym zastanawiam. – tbsalling
https://github.com/gigaSproule/swagger-gradle-plugin Czy wypróbowałeś tę wtyczkę? To twierdzi, że robi dokładnie to, o co prosisz. –
Korzystając z wtyczki typu "swagger-gradle", pojawia się następujący błąd: com.fasterxml.jackson.databind.JsonMappingException: Brak treści do odwzorowania ze względu na koniec wprowadzania w [Źródło: NIEZNANE; linia: 1, kolumna: 0] – lex