We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed8018 commit 721b39cCopy full SHA for 721b39c
1 file changed
build.gradle
@@ -5,6 +5,14 @@ plugins {
5
group = 'dev.sdm'
6
version = '0.12.2'
7
8
+java {
9
+ toolchain {
10
+ languageVersion = JavaLanguageVersion.of(17)
11
+ }
12
+
13
+ withSourcesJar()
14
+}
15
16
repositories {
17
mavenCentral()
18
}
@@ -17,4 +25,15 @@ dependencies {
25
26
test {
19
27
useJUnitPlatform()
28
29
30
+jar {
31
+ manifest {
32
+ attributes(
33
+ 'Implementation-Title': project.name,
34
+ 'Implementation-Version': project.version,
35
+ 'Built-By': System.getProperty('user.name'),
36
+ 'Build-Java-Version': JavaVersion.current()
37
+ )
38
20
39
0 commit comments