forked from loafle/openapi-generator-original
* Add option to prevent usage of jackson-nullable (#2901) Add a option for all java client and server to prevent usage of third party library (jackson-databind-nullable) which may be forbidden in some company Add samples for Vertx, Spring MVC, Spring Cloud, Feign and Play Upgrade dependencies for org.openapitools:jackson-databind-nullable * Samples - Remove dependency org.openapitools:jackson-databind-nullable (#2901) * Fix generation of gradle file for vertx (#2901) * Regenerate samples (#2901) * Fix documentation and up to date (#2901) * Fix forgotten regeneration of vertx after dependency integration (#2901) * Regenerate template after rebase (#2901) * Use yaml config files introduce in #6509 to manage samples (#2901) * Regenerate template using the config (#2901) * Fix bad version during testing generated samples (#2901) * Regenerate template after fix bad version (#2901) * Fix merge, allow for set importing on codegen model Co-authored-by: Jim Schubert <james.schubert@gmail.com>
124 lines
3.7 KiB
Groovy
124 lines
3.7 KiB
Groovy
apply plugin: 'idea'
|
|
apply plugin: 'eclipse'
|
|
|
|
group = 'org.openapitools'
|
|
version = '1.0.0'
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven { url "https://repo1.maven.org/maven2" }
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.3.+'
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
|
|
if(hasProperty('target') && target == 'android') {
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '25.0.2'
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 25
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
// Rename the aar correctly
|
|
libraryVariants.all { variant ->
|
|
variant.outputs.each { output ->
|
|
def outputFile = output.outputFile
|
|
if (outputFile != null && outputFile.name.endsWith('.aar')) {
|
|
def fileName = "${project.name}-${variant.baseName}-${version}.aar"
|
|
output.outputFile = new File(outputFile.parent, fileName)
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
provided 'javax.annotation:jsr250-api:1.0'
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
android.libraryVariants.all { variant ->
|
|
def task = project.tasks.create "jar${variant.name.capitalize()}", Jar
|
|
task.description = "Create jar artifact for ${variant.name}"
|
|
task.dependsOn variant.javaCompile
|
|
task.from variant.javaCompile.destinationDir
|
|
task.destinationDir = project.file("${project.buildDir}/outputs/jar")
|
|
task.archiveName = "${project.name}-${variant.baseName}-${version}.jar"
|
|
artifacts.add('archives', task);
|
|
}
|
|
}
|
|
|
|
task sourcesJar(type: Jar) {
|
|
from android.sourceSets.main.java.srcDirs
|
|
classifier = 'sources'
|
|
}
|
|
|
|
artifacts {
|
|
archives sourcesJar
|
|
}
|
|
|
|
} else {
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_7
|
|
targetCompatibility = JavaVersion.VERSION_1_7
|
|
|
|
install {
|
|
repositories.mavenInstaller {
|
|
pom.artifactId = 'petstore-feign-no-nullable'
|
|
}
|
|
}
|
|
|
|
task execute(type:JavaExec) {
|
|
main = System.getProperty('mainClass')
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
}
|
|
}
|
|
|
|
ext {
|
|
swagger_annotations_version = "1.5.24"
|
|
jackson_version = "2.10.3"
|
|
jackson_databind_version = "2.10.3"
|
|
jackson_threetenbp_version = "2.9.10"
|
|
feign_version = "10.11"
|
|
feign_form_version = "3.8.0"
|
|
junit_version = "4.13"
|
|
oltu_version = "1.0.1"
|
|
}
|
|
|
|
dependencies {
|
|
compile "io.swagger:swagger-annotations:$swagger_annotations_version"
|
|
compile "com.google.code.findbugs:jsr305:3.0.2"
|
|
compile "io.github.openfeign:feign-core:$feign_version"
|
|
compile "io.github.openfeign:feign-jackson:$feign_version"
|
|
compile "io.github.openfeign:feign-slf4j:$feign_version"
|
|
compile "io.github.openfeign.form:feign-form:$feign_form_version"
|
|
compile "com.fasterxml.jackson.core:jackson-core:$jackson_version"
|
|
compile "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
|
|
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_databind_version"
|
|
compile "com.github.joschi.jackson:jackson-datatype-threetenbp:$jackson_threetenbp_version"
|
|
compile "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:$oltu_version"
|
|
compile "com.brsanthu:migbase64:2.2"
|
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
|
testCompile "junit:junit:$junit_version"
|
|
}
|