35 lines
900 B
Groovy
Executable file
35 lines
900 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 {
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
pluginBundle {
|
|
website = scmUrl
|
|
vcsUrl = scmUrl
|
|
tags = ['jflex']
|
|
}
|
|
}
|