-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into php-laravel
- Loading branch information
Showing
139 changed files
with
6,628 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
dist: trusty | ||
sudo: required | ||
language: java | ||
addons: | ||
apt: | ||
packages: | ||
- openjdk-6-jdk | ||
jdk: openjdk6 | ||
|
||
cache: | ||
directories: | ||
- $HOME/.m2 | ||
- $HOME/.ivy2 | ||
- $HOME/.gradle/caches/ | ||
- $HOME/.gradle/wrapper/ | ||
|
||
install: | ||
- jdk_switcher use openjdk6 | ||
- java -version | ||
- curl -s "https://get.sdkman.io" | bash | ||
- source "$HOME/.sdkman/bin/sdkman-init.sh" | ||
- sdk version | ||
- sdk install gradle 2.9 | ||
- sdk list gradle | ||
- sdk version | ||
- gradle --version | ||
|
||
script: | ||
- cd samples/client/petstore/java/jersey2-java6 && gradle test |
122 changes: 122 additions & 0 deletions
122
CI/samples.ci/client/petstore/java/jersey2-java6/build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
apply plugin: 'idea' | ||
apply plugin: 'eclipse' | ||
|
||
group = 'org.openapitools' | ||
version = '1.0.0' | ||
|
||
buildscript { | ||
repositories { | ||
jcenter { | ||
url "http://jcenter.bintray.com/" | ||
} | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:2.3.+' | ||
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' | ||
} | ||
} | ||
|
||
repositories { | ||
jcenter { | ||
url "http://jcenter.bintray.com/" | ||
} | ||
} | ||
|
||
|
||
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_6 | ||
targetCompatibility JavaVersion.VERSION_1_6 | ||
} | ||
|
||
// 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_6 | ||
targetCompatibility = JavaVersion.VERSION_1_6 | ||
|
||
install { | ||
repositories.mavenInstaller { | ||
pom.artifactId = 'petstore-jersey2-java6' | ||
} | ||
} | ||
|
||
task execute(type:JavaExec) { | ||
main = System.getProperty('mainClass') | ||
classpath = sourceSets.main.runtimeClasspath | ||
} | ||
} | ||
|
||
ext { | ||
swagger_annotations_version = "1.5.20" | ||
jackson_version = "2.9.6" | ||
jersey_version = "2.6" | ||
commons_io_version=2.5 | ||
commons_lang3_version=3.6 | ||
junit_version = "4.12" | ||
threetenbp_version = "2.6.4" | ||
} | ||
|
||
dependencies { | ||
compile "io.swagger:swagger-annotations:$swagger_annotations_version" | ||
compile "org.glassfish.jersey.core:jersey-client:$jersey_version" | ||
compile "org.glassfish.jersey.media:jersey-media-multipart:$jersey_version" | ||
compile "org.glassfish.jersey.media:jersey-media-json-jackson:$jersey_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_version" | ||
compile "commons-io:commons-io:$commons_io_version" | ||
compile "org.apache.commons:commons-lang3:$commons_lang3_version" | ||
compile "com.github.joschi.jackson:jackson-datatype-threetenbp:$threetenbp_version" | ||
compile "com.brsanthu:migbase64:2.2" | ||
testCompile "junit:junit:$junit_version" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.