| apply plugin: 'idea' |
| apply plugin: 'eclipse' |
| |
| group = 'io.swagger' |
| version = '1.0.0' |
| |
| buildscript { |
| repositories { |
| mavenCentral() |
| } |
| dependencies { |
| classpath 'com.android.tools.build:gradle:2.3.+' |
| classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' |
| } |
| } |
| |
| repositories { |
| mavenCentral() |
| } |
| |
| |
| 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_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 '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-publish' |
| |
| sourceCompatibility = JavaVersion.VERSION_1_8 |
| targetCompatibility = JavaVersion.VERSION_1_8 |
| |
| /* |
| install { |
| repositories.mavenInstaller { |
| pom.artifactId = 'swagger-java-client' |
| } |
| } |
| */ |
| publishing { |
| publications { |
| mavenJava(MavenPublication) { |
| from components.java |
| groupId = 'com.example' |
| artifactId = 'swagger-java-client' |
| version = '1.0.0' |
| } |
| } |
| repositories { |
| maven { |
| name = "localRepo" |
| url = uri("${buildDir}/repo") // or mavenLocal() or remote repo |
| } |
| } |
| } |
| |
| |
| task execute(type:JavaExec) { |
| main = System.getProperty('mainClass') |
| classpath = sourceSets.main.runtimeClasspath |
| } |
| } |
| |
| dependencies { |
| implementation 'io.swagger:swagger-annotations:1.5.17' |
| implementation 'com.squareup.okhttp:okhttp:2.7.5' |
| implementation 'com.squareup.okhttp:logging-interceptor:2.7.5' |
| implementation 'com.google.code.gson:gson:2.8.1' |
| implementation 'io.gsonfire:gson-fire:1.8.0' |
| testImplementation 'junit:junit:4.12' |
| } |