forked from loafle/openapi-generator-original
* update rest assured to use junit 5 * regenerate samples * update junit from 4 to 5 for retrofit2, vertx * update vertx test template
119 lines
3.4 KiB
Groovy
119 lines
3.4 KiB
Groovy
apply plugin: 'idea'
|
|
apply plugin: 'eclipse'
|
|
|
|
group = 'org.openapitools'
|
|
version = '1.0.0'
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.5.+'
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
if(hasProperty('target') && target == 'android') {
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion '23.0.2'
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 22
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
// 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 "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
|
|
}
|
|
}
|
|
|
|
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.destinationDirectory
|
|
task.destinationDirectory = project.file("${project.buildDir}/outputs/jar")
|
|
task.archiveFileName = "${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-publish'
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
artifactId = 'petstore-rest-assured'
|
|
from components.java
|
|
}
|
|
}
|
|
}
|
|
|
|
task execute(type:JavaExec) {
|
|
main = System.getProperty('mainClass')
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
}
|
|
}
|
|
|
|
ext {
|
|
rest_assured_version = "5.3.2"
|
|
junit_version = "5.10.3"
|
|
gson_version = "2.10.1"
|
|
gson_fire_version = "1.9.0"
|
|
okio_version = "3.6.0"
|
|
jakarta_annotation_version = "1.3.5"
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
|
implementation "io.rest-assured:rest-assured:$rest_assured_version"
|
|
implementation "io.gsonfire:gson-fire:$gson_fire_version"
|
|
implementation 'com.google.code.gson:gson:$gson_version'
|
|
implementation "com.squareup.okio:okio:$okio_version"
|
|
implementation "jakarta.validation:jakarta.validation-api:3.0.2"
|
|
implementation "org.hibernate:hibernate-validator:6.0.19.Final"
|
|
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
|
|
}
|