Skip to content
Snippets Groups Projects
Commit b616cb4e authored by Anastasiia Gelmut's avatar Anastasiia Gelmut
Browse files

GONRG-1599 Updated pom and fixed readme.

parent 63b1a8bc
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 ...@@ -59,7 +59,6 @@ $ cat ~/.m2/settings.xml
</servers> </servers>
</settings> </settings>
``` ```
* Update the Google cloud SDK to the latest version: * Update the Google cloud SDK to the latest version:
```bash ```bash
...@@ -79,16 +78,11 @@ gcloud auth application-default login ...@@ -79,16 +78,11 @@ gcloud auth application-default login
* Navigate to partition service's root folder and run: * Navigate to partition service's root folder and run:
```bash
mvn jetty:run
## Testing
* Navigate to partition service's root folder and run:
```bash ```bash
mvn clean install 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 * If you wish to build the project without running tests
...@@ -139,7 +133,7 @@ $ (cd testing/partition-test-gcp/ && mvn clean test) ...@@ -139,7 +133,7 @@ $ (cd testing/partition-test-gcp/ && mvn clean test)
``` ```
## Deployment ## 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: * To deploy into Cloud run, please, use this documentation:
https://cloud.google.com/run/docs/quickstarts/build-and-deploy https://cloud.google.com/run/docs/quickstarts/build-and-deploy
......
...@@ -148,6 +148,25 @@ ...@@ -148,6 +148,25 @@
</execution> </execution>
</executions> </executions>
</plugin> </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> </plugins>
</build> </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