mirror of
				https://github.com/OpenAPITools/openapi-generator.git
				synced 2025-11-04 10:43:44 +00:00 
			
		
		
		
	* [kotlin] Target correct library in jvm-spring-webclient sample * [kotlin] Fixed warning in jvm-spring-restclient * [kotlin-client] Bump Gradle version * [kotlin-client] enableFeaturePreview no longer needed as it's enabled by default * [kotlin-client] Bump kotlin, spotless, and reactor versions * [kotlin-client] Generated code * [kotlin-client] Missed a generated sample * [kotlin-client] Bumped gradle and java version in kotlin-client workflows * [kotlin-client] First attempt to fix jvm-volley * [kotlin-client] Use standard gradle action instead of custom one * [kotlin-client] Use original gradlew action but without specific version * [kotlin-client] Moved sample kotlin-spring-cloud to servers instead of clients * [kotlin-client] Added previously missing generated file * [kotlin-client] Corrected sample path
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
group 'org.openapitools'
 | 
						|
version '1.0.0'
 | 
						|
 | 
						|
wrapper {
 | 
						|
    gradleVersion = '8.7'
 | 
						|
    distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
 | 
						|
}
 | 
						|
 | 
						|
buildscript {
 | 
						|
    ext.kotlin_version = '1.9.23'
 | 
						|
    ext.spotless_version = "6.25.0"
 | 
						|
 | 
						|
    repositories {
 | 
						|
        maven { url "https://repo1.maven.org/maven2" }
 | 
						|
    }
 | 
						|
    dependencies {
 | 
						|
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
 | 
						|
        classpath "com.diffplug.spotless:spotless-plugin-gradle:$spotless_version"
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
apply plugin: 'kotlin'
 | 
						|
apply plugin: 'maven-publish'
 | 
						|
apply plugin: 'com.diffplug.spotless'
 | 
						|
 | 
						|
repositories {
 | 
						|
    maven { url "https://repo1.maven.org/maven2" }
 | 
						|
}
 | 
						|
 | 
						|
// Use spotless plugin to automatically format code, remove unused import, etc
 | 
						|
// To apply changes directly to the file, run `gradlew spotlessApply`
 | 
						|
// Ref: https://github.com/diffplug/spotless/tree/main/plugin-gradle
 | 
						|
spotless {
 | 
						|
    // comment out below to run spotless as part of the `check` task
 | 
						|
    enforceCheck false
 | 
						|
 | 
						|
    format 'misc', {
 | 
						|
        // define the files (e.g. '*.gradle', '*.md') to apply `misc` to
 | 
						|
        target '.gitignore'
 | 
						|
 | 
						|
        // define the steps to apply to those files
 | 
						|
        trimTrailingWhitespace()
 | 
						|
        indentWithSpaces() // Takes an integer argument if you don't like 4
 | 
						|
        endWithNewline()
 | 
						|
    }
 | 
						|
    kotlin {
 | 
						|
        ktfmt()
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
test {
 | 
						|
    useJUnitPlatform()
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
 | 
						|
    implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
 | 
						|
    implementation "com.squareup.moshi:moshi-kotlin:1.15.1"
 | 
						|
    implementation "com.squareup.moshi:moshi-adapters:1.15.1"
 | 
						|
    implementation "com.squareup.okhttp3:okhttp:4.12.0"
 | 
						|
    testImplementation "io.kotlintest:kotlintest-runner-junit5:3.4.2"
 | 
						|
}
 |