Description
A Gradle plugin to generate networking code from a Swagger spec file.
This plugin wraps swagger-codegen, and exposes a configurable generateSwagger gradle task that you can plug inside your gradle build/workflows.
Swagger Gradle Codegen alternatives and similar packages
Based on the "Kotlin" category.
Alternatively, view Swagger Gradle Codegen alternatives based on common mentions on social networks and blogs.
-
CalendarView
A highly customizable calendar view and compose library for Android and Kotlin Multiplatform. -
Balloon
:balloon: Modernized and sophisticated tooltips, fully customizable with an arrow and animations for Android. -
kotlin-android-template
Android + Kotlin + Github Actions + ktlint + Detekt + Gradle Kotlin DSL + buildSrc = โค๏ธ -
NotyKT ๐๏ธ
๐ NotyKT is a complete ๐Kotlin-stack (Backend + Android) ๐ฑ application built to demonstrate the use of Modern development tools with best practices implementation๐ฆธ. -
Material Chip View
Material Chip view. Can be used as tags for categories, contacts or creating text clouds -
DrawableToolbox
๐ ๏ธ The missing drawable toolbox for Android. Create drawables programmatically and get rid of the boring and always repeated drawable.xml files. -
Navigation Toolbar for Android
:octocat: Navigation toolbar is a slide-modeled UI navigation controller made by @Ramotion -
Pdf Viewer For Android
A Lightweight PDF Viewer Android library which only occupies around 80kb while most of the Pdf viewer occupies up to 16MB space. -
Capturable
๐Jetpack Compose utility library for capturing Composable content and transforming it into Bitmap Image๐ผ๏ธ -
SSComposeCookBook
A Collection of major Jetpack compose UI components which are commonly used.๐๐๐ -
Carousel Recyclerview
Carousel Recyclerview let's you create carousel layout with the power of recyclerview by creating custom layout manager. -
CrunchyCalendar โ awesome calendar widget for android apps
A beautiful material calendar with endless scroll, range selection and a lot more! -
Pluto Debug Framework
Android Pluto is a on-device debugging framework for Android applications, which helps intercept Network calls, capture Crashes & ANRs, manipulate application data on-the-go, and much more. -
Permission Flow for Android
Know about real-time state of a Android app Permissions with Kotlin Flow APIs. -
SSCustomBottomNavigation
Animated TabBar with native control and Jetpack Navigation support..โจ๐๐ -
Only
:bouquet: An easy way to persist and run code block only as many times as necessary on Android. -
Nextflix-Composable
Includes jetpack compose, navigation, paging, hilt, retrofit, coil, coroutines, flow.. -
EasyPermissions-ktx
๐ Kotlin version of the popular google/easypermissions wrapper library to simplify basic system permissions logic on Android M or higher. -
Compose Compiler Reports to HTML Generator
A utility (Gradle Plugin + CLI) to convert Jetpack Compose compiler metrics and reports to beautified HTML page. -
MidJourney Images Compose Multiplatform Mobile Application
This application is developed to display the images created by MidJourney. The application is developed with Compose Multiplatform and works on many platforms including Android and iOS platforms. -
Events Calendar
Events Calendar is a user-friendly library that helps you achieve a cool Calendar UI with events mapping. You can customise every pixel of the calendar as per your wish and still achieve in implementing all the functionalities of the native android calendar in addition with adding dots to the calendar which represents the presence of an event on the respective dates. It can be done easily, you are just a few steps away from implementing your own badass looking Calendar for your very own project! -
FlowMVI
A Kotlin Multiplatform MVI library based on coroutines with a rich DSL and a powerful plugin system. -
SSCustomEditTextOutLineBorder
Same as the Outlined text fields presented on the Material Design page but with some dynamic changes. ๐ ๐ -
TimelineView
A customizable and easy-to-use Timeline View library for Android. Works as a RecyclerView decorator (ItemDecoration) -
Bytemask
Android Gradle Plugin that masks secret strings for the app in the source code making it difficult to extract from reverse engineering.
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of Swagger Gradle Codegen or a related project?
README
Swagger Gradle Codegen
A Gradle plugin to generate networking code from a Swagger spec file.
This plugin wraps swagger-codegen, and exposes a configurable generateSwagger
gradle task that you can plug inside your gradle build/workflows.
Getting Started
Swagger Gradle Codegen is distributed through Gradle Plugin Portal. To use it you need to add the following dependency to your gradle files. Please note that those code needs to be added the gradle file of the module where you want to generate the code (not the top level build.gradle[.kts] file).
If you're using the Groovy Gradle files:
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.yelp.codegen:plugin:<latest_version>"
}
}
apply plugin: "com.yelp.codegen.plugin"
generateSwagger {
platform = "kotlin"
packageName = "com.yelp.codegen.samples"
inputFile = file("./sample_specs.json")
outputDir = file("./src/main/java/")
}
If you're using the Kotlin Gradle files:
plugins {
id("com.yelp.codegen.plugin") version "<latest_version>"
}
generateSwagger {
platform.set("kotlin")
packageName.set("com.yelp.codegen.samples")
inputFile.set(file("./sample_specs.json"))
outputDir.set(project.layout.buildDirectory.dir("./src/main/java/"))
}
Please note that the generateSwagger { }
block is needed in order to let the plugin work.
Once you setup the plugin correctly, you can call the :generateSwagger
gradle task, that will run the code generation with the configuration you provided.
Requirements
In order to run this gradle plugin you need to fulfill the following requirements:
- Gradle 5.x - This plugin uses Gradle 5 features, and you will need to setup your Gradle wrapper to use 5.4.1 or more.
- Java 8+
Supported platforms
The Swagger Gradle Codegen is designed to support multiple platforms. For every platform, we provide templates that are tested and generates opinionated code.
Here the list of the supported platforms:
Platform | Description |
---|---|
kotlin |
Generates Kotlin code and Retrofit interfaces, with RxJava2 for async calls and Moshi for serialization |
kotlin-coroutines |
Generates Kotlin code and Retrofit interfaces, with Kotlin Coroutines for async calls and Moshi for serialization |
We're looking forward to more platforms to support in the future. Contributions are more than welcome.
Examples
You can find some examples in this repository to help you set up your generator environment.
samples/groovy-android Contains an example of an Android Library configured with a
build.gradle
file, using the classical Gradle/Groovy as scripting language.samples/kotlin-android Contains an example of an Android Library configured with a
build.gradle.kts
file, using Kotlin as scripting language.samples/kotlin-coroutines Contains an example of an Android Library configured to output Kotlin Coroutines capable code.
samples/junit-tests This sample contains specs used to test edge cases and scenarios that have been reported in the issue tracker or that are worth testing. Tests are executed using
moshi-codegen
. It does also contains all the generated code inside the/scr/main/java
folder. You can use this example to see how the generated code will look like (like here).
How the generated code will look like
Here you can find some examples of how the generated code will look like in your project.
Configuration
To configure the generator, please use the generateSwagger { }
block. Here an example of this block with all the properties.
generateSwagger {
platform.set("kotlin")
packageName.set("com.yelp.codegen.integrations")
specName.set("integration")
specVersion.set("1.0.0")
inputFile.set(file("../sample_specs.json"))
outputDir.set(project.layout.buildDirectory.dir("./src/main/java/"))
features {
headersToRemove.add("Accept-Language")
}
}
And here a table with all the properties and their default values:
Property | Description | Default |
---|---|---|
inputFile |
Defines the path to the Swagger spec file | REQUIRED |
platform |
Defines the platform/templates that will be used. See Supported platforms for a list of them. | "kotlin" |
packageName |
Defines the fully qualified package name that will be used as root when generating the code. | "com.codegen.default" |
specName |
Defines the name of the service that is going to be built. | "defaultname" |
specVersion |
Defines the version of the spec that is going to be used. | If not provided, the version will be read from the specfile. If version is missing will default to "0.0.0" |
outputDir |
Defines the output root folder for the generated files. | $buildDir/gen |
extraFiles |
Defines a folder with extra files that will be copied over after the generation (e.g. util classes or overrides). | not set by default |
Please note that all those properties can be configured with command line flags that mirrors 1:1 the property name. E.g.:
./gradlew generateSwagger --inputFile=./sample/specs.json
Extra Features
You can use the features { }
block to specify customization or enabled/disable specific features for your generator.
Here a list of all the supported features:
Feature | Description | Command line |
---|---|---|
headersToRemove |
List of headers that needs to be ignored for every endpoints. The headers in this list will be dropped and not generated as parameters for the endpoints. | -ignoreheaders= |
Building
To contribute or to start developing the Swagger Codegen Plugin, you need to set up your environment.
Make sure you have:
- Python (needed for pre-commit hook)
- Java/Kotlin (needed for compiling the plugin code)
We also recommend you set up:
- aactivator To correctly manage your venv connected to this project
- IntelliJ IDEA Either the Community or the Ultimate edition are great to contribute to the plugin.
Before starting developing, please run:
./gradlew installHooks
This will take care of installing the pre-commit hooks to keep a consistent style in the codebase.
While developing, you can build, run pre-commits, checks & tests on the plugin using:
./gradlew preMerge
Make sure your tests are all green โ locally before submitting PRs.
NOTE: If you don't have the Android SDK you can skip the Android related tasks by setting SKIP_ANDROID
enviromental variable (tests will be run on the CI anyway).
Contributing/Support
Support for this project is offered in the #swagger-gradle-codegen channel on the Kotlinlang slack (request an invite here).
We're looking for contributors! Feel free to open issues/pull requests to help me improve this project.
If you found a new issue related to incompatible Swagger specs, please attach also the spec file to help investigate the issue.
License ๐
This project is licensed under the Apache 2.0 License - see the [License](License) file for details
*Note that all licence references and agreements mentioned in the Swagger Gradle Codegen README section above
are relevant to that project's source code only.