@@ -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
6666val 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.
7171val 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.
8686val 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 .
109109afterEvaluate {
110110 tasks.withType<Jar >().configureEach {
111111 convention.findPlugin(BundleTaskConvention ::class .java)
0 commit comments