Skip to content

Commit 2716ec7

Browse files
committed
setup gradle project
1 parent 28ede25 commit 2716ec7

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

build.gradle

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
plugins {
2+
id "java"
3+
id "com.github.johnrengelman.shadow" version "7.1.2"
4+
}
5+
6+
shadowJar {
7+
8+
// System.setProperty("logFileName", "linux-bluetooth-connection-fix")
9+
10+
manifest {
11+
attributes("Main-Class": "com.mageddo.linux.bluetoothfix.Main")
12+
}
13+
14+
mergeServiceFiles()
15+
from sourceSets.main.output
16+
configurations = [project.configurations.runtimeClasspath]
17+
18+
}

0 commit comments

Comments
 (0)