33 lines
988 B
Groovy
Executable file
33 lines
988 B
Groovy
Executable file
plugins {
|
|
id 'java-gradle-plugin'
|
|
alias(libs.plugins.publish)
|
|
}
|
|
|
|
apply plugin: 'java-gradle-plugin'
|
|
apply plugin: 'com.gradle.plugin-publish'
|
|
|
|
apply from: rootProject.file('gradle/compile/groovy.gradle')
|
|
apply from: rootProject.file('gradle/test/junit5.gradle')
|
|
|
|
dependencies {
|
|
api gradleApi()
|
|
implementation libs.jflex
|
|
testImplementation gradleTestKit()
|
|
}
|
|
|
|
if (project.hasProperty('gradle.publish.key')) {
|
|
gradlePlugin {
|
|
website = 'https://xbib.org/joerg/gradle-plugins/src/branch/main/gradle-plugin-jflex'
|
|
vcsUrl = 'https://xbib.org/joerg/gradle-plugins'
|
|
plugins {
|
|
jflexPlugin {
|
|
id = 'org.xbib.gradle.plugin.jflex'
|
|
implementationClass = 'org.xbib.gradle.plugin.jflex.JFlexPlugin'
|
|
version = project.version
|
|
description = 'Gradle JFlex plugin'
|
|
displayName = 'Gradle JFlex plugin'
|
|
tags.set(['jflex'])
|
|
}
|
|
}
|
|
}
|
|
}
|