diff --git a/jfrog-applications/ci-and-sdks/ci-integrations/maven-artifactory-plugin.md b/jfrog-applications/ci-and-sdks/ci-integrations/maven-artifactory-plugin.md
index 9e9ed46..787d76f 100644
--- a/jfrog-applications/ci-and-sdks/ci-integrations/maven-artifactory-plugin.md
+++ b/jfrog-applications/ci-and-sdks/ci-integrations/maven-artifactory-plugin.md
@@ -50,11 +50,11 @@ A typical build plugin configuration would be as follows:
```
-The plugin's invocation phase is validate by default, and we recommend you don't change it so the plugin is called as early as possible in the lifecycle of your Maven build.
+The plugin's invocation phase is validated by default, and we recommend you don't change it so the plugin is called as early as possible in the lifecycle of your Maven build.
#### Full Configuration
-The example above configures the Artifactory publisher, to deploy build artifacts either to the releases or the snapshots repository of Artifactory when `mvn deploy` is executed.
+The example above configures the Artifactory publisher to deploy and build artifacts either to the releases or the snapshots repository of Artifactory when `mvn deploy` is executed.
However, the Maven Artifactory Plugin provides many other configurations:
@@ -98,9 +98,9 @@ However, the Maven Artifactory Plugin provides many other configurations:
..
..
true/false
-
+
true/false
-
+
10
@@ -118,13 +118,13 @@ However, the Maven Artifactory Plugin provides many other configurations:
|:--------------------:|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `` | Specifies properties you can attach to published artifacts. For example: prop-value. |
| `` | Specifies whether environment variables are published as part of BuildInfo metadata and which include or exclude patterns are applied when variables are collected |
-| `` | Defines an Artifactory repository where build artifacts should be published using a combination of a `` and `/`. Build artifacts are deployed if the deploy goal is executed and only after all modules are built. |
+| `` | Defines an Artifactory repository where build artifacts should be published using a combination of a `` and `/`. Build artifacts are deployed only after the deployment goal is executed and all modules are built. |
| `` | Updates BuildInfo metadata published together with build artifacts. You can configure whether or not BuildInfo metadata is published using the configuration. |
| `` | Specifies HTTP/S proxy. |
#### Reading Environment Variables and System Properties
-Every build server provides its own set of environment variables. You can utilize these variables when configuring the plugin as shown in the following example:
+Every build server provides its own set of environment variables. You can utilize these variables when configuring the plugin, as shown in the following example:
```xml