mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
1fb2a97497
This reverts commit 15f5eae2a8
.
92 lines
2.5 KiB
Groovy
92 lines
2.5 KiB
Groovy
group = 'io.swagger'
|
|
project.version = '1.0.0'
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.2.2'
|
|
|
|
classpath 'com.github.dcendents:android-maven-plugin:1.2'
|
|
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion '22.0.0'
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 22
|
|
}
|
|
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)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
ext {
|
|
swagger_annotations_version = "1.5.0"
|
|
gson_version = "2.3.1"
|
|
httpclient_version = "4.3.3"
|
|
junit_version = "4.8.1"
|
|
}
|
|
|
|
dependencies {
|
|
compile "io.swagger:swagger-annotations:$swagger_annotations_version"
|
|
compile "com.google.code.gson:gson:$gson_version"
|
|
compile "org.apache.httpcomponents:httpcore:$httpclient_version"
|
|
compile "org.apache.httpcomponents:httpclient:$httpclient_version"
|
|
compile ("org.apache.httpcomponents:httpcore:$httpclient_version") {
|
|
exclude(group: 'org.apache.httpcomponents', module: 'httpclient')
|
|
}
|
|
compile ("org.apache.httpcomponents:httpmime:$httpclient_version") {
|
|
exclude(group: 'org.apache.httpcomponents', module: 'httpclient')
|
|
}
|
|
testCompile "junit:junit:$junit_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.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
|
|
}
|