diff --git a/cloudslang_cli.rst b/cloudslang_cli.rst index 93b6c44..fb789a4 100644 --- a/cloudslang_cli.rst +++ b/cloudslang_cli.rst @@ -151,11 +151,11 @@ Maven Configuration The CLI uses Maven to manage Java action dependencies. There are several Maven configuration properties found in the :ref:`CLI's -configuration file `. To configure Maven to use a remote +configuration file `. To configure Maven to use a remote repository other than Maven Central, edit the values for ``cloudslang.maven.repo.remote.url`` and ``cloudslang.maven.plugins.remote.url``. Additionally, you can edit the proxy settings in the file found -at ``maven.settings.xml.path ``. +at ``maven.settings.xml.path``. .. _use_the_cli: diff --git a/cloudslang_content.rst b/cloudslang_content.rst index a51e42b..d897c45 100644 --- a/cloudslang_content.rst +++ b/cloudslang_content.rst @@ -41,7 +41,7 @@ Running Content Dependent on Java Actions Some of the content is dependent on Java actions from the score-actions repository. CloudSlang uses Maven to manage these dependencies. When executing -an operation that declares a dependency, the required Maven project and all its +an operation that declares a dependency, the required Maven project and all the resources specified in its pom's ``dependencies`` will be resolved and downloaded (if necessary). diff --git a/cloudslang_dsl_reference.rst b/cloudslang_dsl_reference.rst index c5f848c..b47eaa3 100644 --- a/cloudslang_dsl_reference.rst +++ b/cloudslang_dsl_reference.rst @@ -745,7 +745,7 @@ The key ``gav`` is a property of a `java_action <#java-action>`__. It is mapped to the ``group:artifact:version`` of the Maven project in which an annotated Java @Action resides. -Upon `operation <#operation>`__ execution, the Maven project and all its +Upon `operation <#operation>`__ execution, the Maven project and all the required resources specified in its pom's ``dependencies`` will be resolved and downloaded (if necessary). @@ -919,7 +919,7 @@ To add a new Java action: - `Write an annotated Java method <#write-an-annotated-java-method>`__ - `Release to remote Maven repository <#release-to-remote-maven-repository>`__ - - `Reference your Maven artifact <#reference-your-maven artifact>`__ + - `Reference Maven artifact <#reference-maven artifact>`__ Write an Annotated Java Method ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1036,14 +1036,14 @@ Below is an example **pom.xml** file that can be used for your Maven project. -Reference your Maven artifact -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Reference Maven artifact +^^^^^^^^^^^^^^^^^^^^^^^^ Reference your Maven artifact using the `gav <#gav>`__ key in the `java_action <#java-action>`__ section of your `operation <#operation>`__. Upon the `operation's <#operation>`__ first execution, the Maven project and all -its required resources specified in its pom's ``dependencies`` will be resolved +the required resources specified in its pom's ``dependencies`` will be resolved and downloaded. .. _loop: