-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Java][webclient] fix missing dependencies in build.gradle (#7777)
* fix build.gradle in java webclient * update junit version in samples
- Loading branch information
Showing
6 changed files
with
222 additions
and
41 deletions.
There are no files selected for viewing
177 changes: 177 additions & 0 deletions
177
modules/openapi-generator/src/main/resources/Java/libraries/webclient/build.gradle.mustache
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,177 @@ | ||
apply plugin: 'idea' | ||
apply plugin: 'eclipse' | ||
|
||
group = '{{groupId}}' | ||
version = '{{artifactVersion}}' | ||
|
||
buildscript { | ||
repositories { | ||
maven { url "https://repo1.maven.org/maven2" } | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:2.3.+' | ||
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' | ||
} | ||
} | ||
|
||
repositories { | ||
maven { url "https://repo1.maven.org/maven2" } | ||
jcenter() | ||
} | ||
|
||
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 { | ||
{{#supportJava6}} | ||
sourceCompatibility JavaVersion.VERSION_1_6 | ||
targetCompatibility JavaVersion.VERSION_1_6 | ||
{{/supportJava6}} | ||
{{^supportJava6}} | ||
{{#java8}} | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
{{/java8}} | ||
{{^java8}} | ||
sourceCompatibility JavaVersion.VERSION_1_7 | ||
targetCompatibility JavaVersion.VERSION_1_7 | ||
{{/java8}} | ||
{{/supportJava6}} | ||
} | ||
|
||
// 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' | ||
{{#supportJava6}} | ||
sourceCompatibility = JavaVersion.VERSION_1_6 | ||
targetCompatibility = JavaVersion.VERSION_1_6 | ||
{{/supportJava6}} | ||
{{^supportJava6}} | ||
{{#java8}} | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
{{/java8}} | ||
{{^java8}} | ||
sourceCompatibility = JavaVersion.VERSION_1_7 | ||
targetCompatibility = JavaVersion.VERSION_1_7 | ||
{{/java8}} | ||
{{/supportJava6}} | ||
|
||
install { | ||
repositories.mavenInstaller { | ||
pom.artifactId = '{{artifactId}}' | ||
} | ||
} | ||
|
||
task execute(type:JavaExec) { | ||
main = System.getProperty('mainClass') | ||
classpath = sourceSets.main.runtimeClasspath | ||
} | ||
|
||
task sourcesJar(type: Jar, dependsOn: classes) { | ||
classifier = 'sources' | ||
from sourceSets.main.allSource | ||
} | ||
|
||
task javadocJar(type: Jar, dependsOn: javadoc) { | ||
classifier = 'javadoc' | ||
from javadoc.destinationDir | ||
} | ||
|
||
artifacts { | ||
archives sourcesJar | ||
archives javadocJar | ||
} | ||
} | ||
|
||
ext { | ||
swagger_annotations_version = "1.6.2" | ||
spring_web_version = "5.0.16.RELEASE" | ||
jackson_version = "2.11.3" | ||
jackson_databind_version = "2.11.3" | ||
{{#openApiNullable}} | ||
jackson_databind_nullable_version = "0.2.1" | ||
{{/openApiNullable}} | ||
javax_annotation_version = "1.3.2" | ||
reactor_version = "3.3.10.RELEASE" | ||
reactor_netty_version = "0.7.15.RELEASE" | ||
jodatime_version = "2.9.9" | ||
junit_version = "4.13.1" | ||
} | ||
|
||
dependencies { | ||
compile "io.swagger:swagger-annotations:$swagger_annotations_version" | ||
compile "com.google.code.findbugs:jsr305:3.0.2" | ||
compile "io.projectreactor:reactor-core:$reactor_version" | ||
compile "org.springframework:spring-webflux:$spring_web_version" | ||
compile "io.projectreactor.ipc:reactor-netty:$reactor_netty_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_databind_version" | ||
compile "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:$jackson_version" | ||
{{#openApiNullable}} | ||
compile "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version" | ||
{{/openApiNullable}} | ||
{{#joda}} | ||
compile "joda-time:joda-time:$jodatime_version" | ||
{{/joda}} | ||
{{#java8}} | ||
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version" | ||
{{/java8}} | ||
{{^java8}} | ||
compile "com.brsanthu:migbase64:2.2" | ||
{{/java8}} | ||
compile "javax.annotation:javax.annotation-api:$javax_annotation_version" | ||
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
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