Skip to content

Commit 56be011

Browse files
committed
add openApi codegen libraries
1 parent 23dd651 commit 56be011

File tree

5,034 files changed

+1016659
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,034 files changed

+1016659
-0
lines changed

android/.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
5+
# Files for the Dalvik VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# Generated files
12+
bin/
13+
gen/
14+
out/
15+
16+
# Gradle files
17+
.gradle/
18+
build/
19+
20+
# Local configuration file (sdk path, etc)
21+
local.properties
22+
23+
# Proguard folder generated by Eclipse
24+
proguard/
25+
26+
# Log Files
27+
*.log
28+
29+
# Android Studio Navigation editor temp files
30+
.navigation/
31+
32+
# Android Studio captures folder
33+
captures/
34+
35+
# Intellij
36+
*.iml
37+
38+
# Keystore files
39+
*.jks

android/.openapi-generator-ignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

android/.openapi-generator/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.0.0-SNAPSHOT

android/README.md

+315
Large diffs are not rendered by default.

android/build.gradle

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
group = 'org.openapitools'
2+
project.version = '1.0.0'
3+
4+
buildscript {
5+
repositories {
6+
mavenCentral()
7+
jcenter()
8+
}
9+
dependencies {
10+
classpath 'com.android.tools.build:gradle:2.3.+'
11+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
12+
}
13+
}
14+
15+
allprojects {
16+
repositories {
17+
jcenter()
18+
}
19+
}
20+
21+
22+
apply plugin: 'com.android.library'
23+
apply plugin: 'com.github.dcendents.android-maven'
24+
25+
android {
26+
compileSdkVersion 25
27+
buildToolsVersion '25.0.2'
28+
defaultConfig {
29+
minSdkVersion 14
30+
targetSdkVersion 25
31+
}
32+
compileOptions {
33+
sourceCompatibility JavaVersion.VERSION_1_7
34+
targetCompatibility JavaVersion.VERSION_1_7
35+
}
36+
37+
// Rename the aar correctly
38+
libraryVariants.all { variant ->
39+
variant.outputs.each { output ->
40+
def outputFile = output.outputFile
41+
if (outputFile != null && outputFile.name.endsWith('.aar')) {
42+
def fileName = "${project.name}-${variant.baseName}-${version}.aar"
43+
output.outputFile = new File(outputFile.parent, fileName)
44+
}
45+
}
46+
}
47+
48+
testOptions {
49+
unitTests.returnDefaultValues = true
50+
}
51+
}
52+
53+
54+
ext {
55+
swagger_annotations_version = "1.5.0"
56+
gson_version = "2.3.1"
57+
httpmime_version = "4.5.2"
58+
httpcore_version = "4.4.4"
59+
httpclient_version = "4.3.3"
60+
volley_version = "1.0.0"
61+
junit_version = "4.12"
62+
robolectric_version = "3.0"
63+
concurrent_unit_version = "0.4.2"
64+
}
65+
66+
dependencies {
67+
compile "io.swagger:swagger-annotations:$swagger_annotations_version"
68+
compile "com.google.code.gson:gson:$gson_version"
69+
compile "org.apache.httpcomponents:httpcore:$httpcore_version"
70+
compile "org.apache.httpcomponents:httpmime:$httpmime_version"
71+
compile "org.apache.httpcomponents:httpclient-android:$httpclient_version"
72+
compile "com.android.volley:volley:${volley_version}"
73+
testCompile "junit:junit:$junit_version"
74+
testCompile "org.robolectric:robolectric:${robolectric_version}"
75+
testCompile "net.jodah:concurrentunit:${concurrent_unit_version}"
76+
}
77+
78+
afterEvaluate {
79+
android.libraryVariants.all { variant ->
80+
def task = project.tasks.create "jar${variant.name.capitalize()}", Jar
81+
task.description = "Create jar artifact for ${variant.name}"
82+
task.dependsOn variant.javaCompile
83+
task.from variant.javaCompile.destinationDir
84+
task.destinationDir = project.file("${project.buildDir}/outputs/jar")
85+
task.archiveName = "${project.name}-${variant.baseName}-${version}.jar"
86+
artifacts.add('archives', task);
87+
}
88+
}
89+
90+
task sourcesJar(type: Jar) {
91+
from android.sourceSets.main.java.srcDirs
92+
classifier = 'sources'
93+
}
94+
95+
artifacts {
96+
archives sourcesJar
97+
}

0 commit comments

Comments
 (0)