Skip to content
Snippets Groups Projects
Commit 0202f592 authored by Riabokon Stanislav(EPAM)[GCP]'s avatar Riabokon Stanislav(EPAM)[GCP]
Browse files

Merge branch 'feature/GONRG-1599_Fixed_Readme' into 'integration-master'

GONRG-1599 Updated pom and fixed readme.

See merge request go3-nrg/platform/System/partition!18
parents 63b1a8bc b616cb4e
No related branches found
No related tags found
4 merge requests!47Authentication for PartitionService to work under SA(GONRG-1843),!45(GONRG-2074) GCP incorrect response,!36Partition: Audit Logs Implementation (GONRG-1607),!35Partition Service for GCP (GONRG-1706)
......@@ -59,7 +59,6 @@ $ cat ~/.m2/settings.xml
</servers>
</settings>
```
* Update the Google cloud SDK to the latest version:
```bash
......@@ -79,16 +78,11 @@ gcloud auth application-default login
* Navigate to partition service's root folder and run:
```bash
mvn jetty:run
## Testing
* Navigate to partition service's root folder and run:
```bash
mvn clean install
```
* If you wish to see the coverage report then go to testing/target/site/jacoco-aggregate and open index.html
* If you wish to see the coverage report then go to target/site/jacoco/index.html and open index.html
* If you wish to build the project without running tests
......@@ -139,7 +133,7 @@ $ (cd testing/partition-test-gcp/ && mvn clean test)
```
## Deployment
Storage Service is compatible with App Engine Flexible Environment and Cloud Run.
Partition Service is compatible with App Engine Flexible Environment and Cloud Run.
* To deploy into Cloud run, please, use this documentation:
https://cloud.google.com/run/docs/quickstarts/build-and-deploy
......
......@@ -148,6 +148,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment