mirror of
				https://github.com/OpenAPITools/openapi-generator.git
				synced 2025-10-31 00:33:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			137 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			137 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'idea'
 | |
| apply plugin: 'eclipse'
 | |
| 
 | |
| group = 'org.openapitools'
 | |
| version = '0.1.0'
 | |
| 
 | |
| buildscript {
 | |
|     repositories {
 | |
|         mavenCentral()
 | |
|     }
 | |
|     dependencies {
 | |
|         classpath 'com.android.tools.build:gradle:1.5.+'
 | |
|         classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
 | |
|     }
 | |
| }
 | |
| 
 | |
| repositories {
 | |
|     mavenCentral()
 | |
| }
 | |
| 
 | |
| 
 | |
| if(hasProperty('target') && target == 'android') {
 | |
| 
 | |
|     apply plugin: 'com.android.library'
 | |
|     apply plugin: 'com.github.dcendents.android-maven'
 | |
| 
 | |
|     android {
 | |
|         compileSdkVersion 23
 | |
|         buildToolsVersion '23.0.2'
 | |
|         defaultConfig {
 | |
|             minSdkVersion 14
 | |
|             targetSdkVersion 22
 | |
|         }
 | |
|         compileOptions {
 | |
|             sourceCompatibility JavaVersion.VERSION_17
 | |
|             targetCompatibility JavaVersion.VERSION_17
 | |
|         }
 | |
| 
 | |
|         // 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 "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_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.destinationDirectory
 | |
|             task.destinationDirectory = project.file("${project.buildDir}/outputs/jar")
 | |
|             task.archiveFileName = "${project.name}-${variant.baseName}-${version}.jar"
 | |
|             artifacts.add('archives', task);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     task sourcesJar(type: Jar) {
 | |
|         from android.sourceSets.main.java.srcDirs
 | |
|         archiveClassifier = 'sources'
 | |
|     }
 | |
| 
 | |
|     artifacts {
 | |
|         archives sourcesJar
 | |
|     }
 | |
| 
 | |
| } else {
 | |
| 
 | |
|     apply plugin: 'java'
 | |
|     apply plugin: 'maven-publish'
 | |
| 
 | |
|     sourceCompatibility = JavaVersion.VERSION_17
 | |
|     targetCompatibility = JavaVersion.VERSION_17
 | |
| 
 | |
|     publishing {
 | |
|         publications {
 | |
|             maven(MavenPublication) {
 | |
|                artifactId = 'echo-api-native'
 | |
|                from components.java
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     task execute(type:JavaExec) {
 | |
|        mainClass = System.getProperty('mainClass')
 | |
|        classpath = sourceSets.main.runtimeClasspath
 | |
|     }
 | |
| }
 | |
| 
 | |
| ext {
 | |
|     jackson_version = "2.19.2"
 | |
|     jackson_databind_version = "2.19.2"
 | |
|     jackson_databind_nullable_version = "0.2.7"
 | |
|     spring_web_version = "6.1.21"
 | |
|     jakarta_annotation_version = "2.1.1"
 | |
|     jodatime_version = "2.9.9"
 | |
|     junit_version = "5.10.2"
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     implementation "com.google.code.findbugs:jsr305:3.0.2"
 | |
|     implementation "org.springframework:spring-web:$spring_web_version"
 | |
|     implementation "org.springframework:spring-context:$spring_web_version"
 | |
|     implementation "com.fasterxml.jackson.core:jackson-core:$jackson_version"
 | |
|     implementation "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
 | |
|     implementation "com.fasterxml.jackson.core:jackson-databind:$jackson_databind_version"
 | |
|     implementation "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:$jackson_version"
 | |
|     implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
 | |
|     implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
 | |
|     implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
 | |
|     testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
 | |
|     testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit_version"
 | |
| }
 | |
| 
 | |
| test {
 | |
|     // Enable JUnit 5 (Gradle 4.6+).
 | |
|     useJUnitPlatform()
 | |
| 
 | |
|     // Always run tests, even when nothing changed.
 | |
|     dependsOn 'cleanTest'
 | |
| 
 | |
|     // Show test results.
 | |
|     testLogging {
 | |
|         events "passed", "skipped", "failed"
 | |
|     }
 | |
| 
 | |
| }
 |