Skip to content

Commit e8f69c1

Browse files
committed
Changed ready to jar-with-dependencies in build setup
1 parent e128778 commit e8f69c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Find and rename fat JAR
2626
run: |
2727
mkdir -p dist
28-
FAT_JAR=$(find target -name "*-ready.jar" | head -n 1)
28+
FAT_JAR=$(find target -name "*-jar-with-dependencies.jar" | head -n 1)
2929
VERSION=${GITHUB_REF_NAME#v}
3030
cp "$FAT_JAR" "dist/FloorIDE-$VERSION.jar"
3131

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<artifactId>maven-assembly-plugin</artifactId>
2929
<configuration>
3030
<descriptorRefs>
31-
<descriptorRef>ready</descriptorRef>
31+
<descriptorRef>jar-with-dependencies</descriptorRef>
3232
</descriptorRefs>
3333
<archive>
3434
<manifest>

0 commit comments

Comments
 (0)