Skip to content

Commit 5a4902a

Browse files
committed
add LICENSE file to release jar file
1 parent 565b7fa commit 5a4902a

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Taskfile.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ vars:
66
TEST: test
77

88
tasks:
9+
default:
10+
cmds:
11+
- task --list-all
12+
913
build:
1014
cmds:
1115
- ./gradlew build

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = 'lechuck'
11-
version = '1.7.1'
11+
version = '1.7.2'
1212

1313
java {
1414
sourceCompatibility = JavaVersion.VERSION_17
@@ -51,6 +51,12 @@ patchPluginXml {
5151
sinceBuild = '241'
5252
}
5353

54+
jar {
55+
from('LICENSE')
56+
}
57+
58+
59+
5460
publishPlugin {
5561
token = System.getenv('ORG_GRADLE_PROJECT_intellijPublishToken')
5662
}

0 commit comments

Comments
 (0)