com.github.ryarnyah.querydsl
Owner: Ryar Nyah
Port of QueryDSL maven plugin for Gradle
https://github.com/ryarnyah/querydsl-gradle-plugin
Sources: https://github.com/ryarnyah/querydsl-gradle-plugin
Version 0.0.3 (latest)
Created 01 March 2021.
Port of QueryDSL maven plugin for Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.ryarnyah.querydsl") version "0.0.3"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.github.ryarnyah.querydsl:com.github.ryarnyah.querydsl.gradle.plugin:0.0.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.ryarnyah.querydsl") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.ryarnyah.querydsl:com.github.ryarnyah.querydsl.gradle.plugin:0.0.3") } } apply(plugin = "com.github.ryarnyah.querydsl")
- Applying plugins to all subprojects .