Skip to content

Commit abb6fdc

Browse files
marcphilippsbrannen
andcommitted
Fix typos
Co-Authored-By: Sam Brannen <[email protected]>
1 parent 44c9609 commit abb6fdc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

buildSrc/src/main/kotlin/osgi-conventions.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ tasks.withType<Jar>().matching {
2929
# the kotlin packages, but enough modules do to make it a default.
3030
-fixupmessages.kotlin.import: "Unused Import-Package instructions: \\[kotlin.*\\]";is:=ignore
3131
32-
# This tells bnd to ignore classes it files in `META-INF/versions/`
32+
# This tells bnd to ignore classes it finds in `META-INF/versions/`
3333
# because bnd doesn't yet support multi-release jars.
3434
-fixupmessages.wrong.dir: "Classes found in the wrong directory: \\{META-INF/versions/...";is:=ignore
3535
@@ -65,7 +65,7 @@ tasks.withType<Jar>().matching {
6565

6666
val osgiPropertiesFile = file("$buildDir/verifyOSGiProperties.bndrun")
6767

68-
// Bnd's Resolve task uses a properties file for it's configuration. This
68+
// Bnd's Resolve task uses a properties file for its configuration. This
6969
// task writes out the properties necessary for it to verify the OSGi
7070
// metadata.
7171
val osgiProperties by tasks.registering(WriteProperties::class) {
@@ -81,7 +81,7 @@ val osgiVerification by configurations.creating {
8181
}
8282

8383
// Bnd's Resolve task is what verifies that a jar can be used in OSGi and
84-
// that it's metadata is valid. If the metadata is invalid this task will
84+
// that its metadata is valid. If the metadata is invalid this task will
8585
// fail.
8686
val verifyOSGi by tasks.registering(Resolve::class) {
8787
dependsOn(osgiProperties)
@@ -105,7 +105,7 @@ tasks.check {
105105
}
106106

107107
// The ${project.description}, for some odd reason, is only available
108-
// afterEvaluate.
108+
// after evaluation.
109109
afterEvaluate {
110110
tasks.withType<Jar>().configureEach {
111111
convention.findPlugin(BundleTaskConvention::class.java)

0 commit comments

Comments
 (0)