-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
23 lines (20 loc) · 872 Bytes
/
build.gradle.kts
File metadata and controls
23 lines (20 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version = "1.2.1"
publishingConventions {
pluginPortal("${project.group}.${project.name}") {
implementationClass("org.gradlex.javamodule.packaging.JavaModulePackagingPlugin")
displayName("Java Module Packaging Gradle Plugin")
description("A plugin to package Java Module applications for multiple platforms")
tags("gradlex", "java", "modularity", "jigsaw", "jpms", "packaging", "jpackage")
}
gitHub("https://github.com/gradlex-org/java-module-packaging")
developer {
id.set("jjohannes")
name.set("Jendrik Johannes")
email.set("jendrik@gradlex.org")
}
}
testingConventions { testGradleVersions("7.4", "7.6.5", "8.0.2", "8.14.2") }
tasks.test {
inputs.property("operatingSystemName", System.getProperty("os.name"))
inputs.property("operatingSystemArch", System.getProperty("os.arch"))
}