Skip to content

Commit af019e6

Browse files
committed
updated license to Apache2.0 in maven pom
1 parent 67aa670 commit af019e6

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

preflight-core/build.gradle.kts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,19 @@ subprojects {
6363
}
6464
}
6565

66+
plugins.withId("maven-publish") {
67+
extensions.configure<PublishingExtension> {
68+
publications.withType<MavenPublication> {
69+
pom {
70+
licenses {
71+
license {
72+
name.set("The Apache License, Version 2.0")
73+
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
74+
}
75+
}
76+
}
77+
}
78+
}
79+
}
80+
6681
}

0 commit comments

Comments
 (0)