You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
353 B
14 lines
353 B
1 year ago
|
plugins {
|
||
|
java
|
||
|
id("maven-publish")
|
||
|
}
|
||
|
|
||
|
mavenPublicationConfig {
|
||
|
displayName = "JDK version probe"
|
||
|
description = "JDK version probe (Internal)"
|
||
|
artifactId = "gradle-plugin-internal-jdk-version-probe"
|
||
|
}
|
||
|
|
||
|
tasks.jar.configure {
|
||
|
manifest.attributes["Main-Class"] = "org.jetbrains.compose.desktop.application.internal.JdkVersionProbe"
|
||
|
}
|