33[ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.eolang/eo-maven-plugin.svg )] ( https://maven-badges.herokuapp.com/maven-central/org.eolang/eo-maven-plugin )
44[ ![ Javadoc] ( http://www.javadoc.io/badge/org.eolang/eo-maven-plugin.svg )] ( http://www.javadoc.io/doc/org.eolang/eo-maven-plugin )
55
6- This is Maven plugin for EO.
6+ This is a Maven plugin for EO.
77
8- Here is a simple program that gets a year from command line and tells you
8+ Here is a simple program that gets a year from a command line and tells you
99whether it's leap or not:
1010
1111``` eo
@@ -24,7 +24,7 @@ whether it's leap or not:
2424
2525```
2626
27- In order to compile this program, put it into ` src/main/eo/main.eo ` and then
27+ To compile this program, put it into ` src/main/eo/main.eo ` and then
2828create a file ` pom.xml ` with this content (it's just a sample):
2929
3030``` xml
@@ -111,7 +111,7 @@ for most popular and important objects that any of you will need in order
111111to write even a simple EO program. There are objects like ` string ` , ` int ` , ` sprintf ` ,
112112` stdout ` , and so on. By the way, you may want to contribute there by creating new objects.
113113
114- ## Objectionary objects cache
114+ ### Objectionary objects cache
115115
116116If any external object is used in EO program it will be pulled from [ Objectionary home] ( https://github.com/objectionary/home ) .
117117By default, during compilation the plugin will check local cache (` ~/.eo ` ) for required objects
@@ -124,7 +124,7 @@ Maven option `-U` (see [Maven CLI docs](https://maven.apache.org/ref/3.1.0/maven
124124mvn -U clean install
125125```
126126
127- If you want to build your project or run your tests which use eo-maven-plugin, you can change stack
127+ If you want to build your project or run your tests, which use eo-maven-plugin, you can change stack
128128size for your purposes by stack-size option:
129129
130130``` shell
@@ -133,10 +133,20 @@ mvn clean install -Pqulice -Dstack-size=1M
133133
134134where 1M is size of stack. By default stack-size = 256M in eo-maven-plugin, maximum size is 1G.
135135
136- ## How to run Integration Tests only
136+ ## How To Build Plugin
137+
138+ To build the plugin and install it locally, run the following command under the ` eo-maven-plugin ` directory:
139+
140+ ``` shell
141+ mvn clean install -Pqulice
142+ ```
143+
144+ It will build the plugin and install it in your local Maven repository.
145+
146+ ### How to run Integration Tests only
137147
138148If you want to run a specific integration test without waiting until other unit or integration tests
139- are executed you need to go to ` eo-maven-plugin ` directory and execute the next command :
149+ are executed, you might execute the following command under the ` eo-maven-plugin ` directory:
140150
141151``` shell
142152mvn clean integration-test invoker:run -Dinvoker.test=fibonacci -DskipTests
@@ -145,7 +155,7 @@ mvn clean integration-test invoker:run -Dinvoker.test=fibonacci -DskipTests
145155Here ` fibonacci ` is the name of the desired integration test, ` -DskipTests ` is used in order to skip
146156` eo-maven-plugin ` unit tests.
147157
148- ## How to disable Integration Tests
158+ ### How to disable Integration Tests
149159
150160It is sometime necessary to temporarily disable the integration tests (for example for introducing
151161braking changes into plugin or EO runtime). This can be achieved by disabling ` maven-invoker-plugin `
0 commit comments