Skip to content

Commit 5c530d7

Browse files
fix: review suggestions
Co-authored-by: Sarah Haggarty <81160244+sarahhaggarty@users.noreply.github.com>
1 parent 08427ee commit 5c530d7

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/topics/maven/maven-configure-project.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Currently, only Maven v3 is supported.
88
## Automatic configuration with extensions
99

1010
You can simplify Maven configuration in both mixed Java-Kotlin projects and in pure Kotlin projects using the `<extensions>` option.
11-
It allows skipping the Maven compiler plugin configuration.
11+
This approach saves you time because you don't need to configure the Maven compiler plugin.
1212

1313
To apply the Kotlin Maven plugin with `<extensions>`, update your `pom.xml` build file as follows:
1414

@@ -85,8 +85,8 @@ You can set a different version separately:
8585

8686
## Manual configuration without extensions
8787

88-
Without enabling `<extensions>` in the Kotlin Maven plugin, a manual project configuration is necessary to ensure that
89-
the source code is compiled correctly.
88+
Without enabling `<extensions>` in the Kotlin Maven plugin, you need to configure the project manually to ensure that
89+
the source code compiles correctly.
9090

9191
You can set up your Maven project to compile a combination of [Java and Kotlin sources](#compile-kotlin-and-java-sources)
9292
or [Kotlin-only sources](#compile-kotlin-only-sources).

docs/topics/maven/maven-set-dependencies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ To manually add the Kotlin's standard library to your project, update the `depen
6565
#### Automatic setup
6666

6767
You can avoid manual configuration using the [`<extensions>` option](maven-configure-project.md#automatic-configuration-with-extensions) provided
68-
by the Kotlin Maven plugin. It automatically adds the `kotlin-stdlib` dependency if it's not defined in the project,
69-
for example, when you create a new Kotlin Maven project or introduce Kotlin to your existing Java Maven project.
68+
by the Kotlin Maven plugin. It automatically adds the `kotlin-stdlib` dependency if it's not defined in the project.
69+
For example, when you create a new Kotlin Maven project or introduce Kotlin to your existing Java Maven project.
7070

7171
If you already declared a dependency `kotlin-stdlib`, for example, with a different version, the Kotlin Maven plugin with
7272
`<extensions>` will not overwrite it.

0 commit comments

Comments
 (0)