File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Version 7.x * (unreleased)*
4
4
5
- ## Version 7.0.3 * (unreleased)*
5
+ ## Version 7.1.0 * (unreleased)*
6
6
* Add support for ARM64 Windows [ #315 ] ( https://github.com/node-gradle/gradle-node-plugin/issues/315 )
7
7
* Add support for AIX [ #320 ] ( https://github.com/node-gradle/gradle-node-plugin/issues/320 )
8
+ * Add license to publications POM [ #319 ] ( https://github.com/node-gradle/gradle-node-plugin/issues/319 )
8
9
9
10
## Version 7.0.2 * (2024-02-02)*
10
11
* Prevent misconfigured ` workDir ` from removing all unrelated files [ #297 ] ( https://github.com/node-gradle/gradle-node-plugin/issues/297 )
Original file line number Diff line number Diff line change @@ -182,3 +182,12 @@ pluginBundle {
182
182
tasks.wrapper {
183
183
distributionType = Wrapper .DistributionType .ALL
184
184
}
185
+
186
+ publishing.publications.withType<MavenPublication >().configureEach {
187
+ pom.licenses {
188
+ license {
189
+ name.set(" Apache License, Version 2.0" )
190
+ url.set(" http://www.apache.org/licenses/LICENSE-2.0.txt" )
191
+ }
192
+ }
193
+ }
You can’t perform that action at this time.
0 commit comments