Skip to content

Commit 1811743

Browse files
committed
Upgrade plugin-publish, add compatibility declaration, enhance metadata
Upgrade com.gradle.plugin-publish 1.3.1 to 2.1.1 Remove redundant java-gradle-plugin (auto-applied) Add compatibility declaration (configurationCache = false) Enhance description and tags for Plugin Portal visibility
1 parent 0e5a879 commit 1811743

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

python-embed-gradle-plugin/build.gradle

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins {
2-
id 'java-gradle-plugin'
3-
id 'com.gradle.plugin-publish' version '1.3.1'
2+
id 'com.gradle.plugin-publish' version '2.1.1'
43
}
54

65
group = 'io.github.howtis'
@@ -18,8 +17,13 @@ gradlePlugin {
1817
id = 'io.github.howtis.python-embed'
1918
implementationClass = 'io.github.howtis.pythonembed.gradle.PythonEmbedPlugin'
2019
displayName = 'Python Embed Gradle Plugin'
21-
description = 'Embeds Python environment into Java applications'
22-
tags.set(['python', 'embed', 'msgpack'])
20+
description = 'Gradle plugin to create Python venv, install packages, and auto-download CPython for JVM embedding'
21+
tags.set(['python', 'cpython', 'embed', 'embedded-python', 'jvm', 'subprocess', 'msgpack', 'venv', 'interop', 'java-python'])
22+
compatibility(it) {
23+
features {
24+
configurationCache = false
25+
}
26+
}
2327
}
2428
}
2529
}

0 commit comments

Comments
 (0)