Skip to content

Commit

Permalink
Updated README.md and pom.xml with new installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
sivangbagri authored and SahanDisa committed Oct 30, 2023
1 parent e662a7d commit 69d25ad
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ git clone https://github.com/scorelab/ImageLab.git
Open the project in your preferred IDE. It will take a couple of minutes
to sync with the project related maven dependencies.

Then navigate to the project directory in terminal and type following command
Then navigate to the project directory ( imagelab_java ) in terminal and type following command
to build the project.

```
mvn clean install
mvn clean install
```

To skip tests and run the project.
Expand All @@ -92,6 +92,23 @@ following command in the terminal.
mvn exec:java
```

In case of "Failed during checkstyle execution" after firing mvm clean install
Follow :

Modify pom.xml

```
mvn clean install --% -Dcheckstyle.skip
```
and then

```
mvn exec:java
```


Check the **[project documentation](https://scorelab.org/imagelab/)** for more instructions.

### Setup Guidelines - Electron App
Expand Down Expand Up @@ -133,6 +150,7 @@ npm install

Check the **[project documentation](https://scorelab.org/imagelab/)** for more instructions.


[<--# Generic Links -->]: #
[hacktoberfest-link]: https://github.com/scorelab/ImageLab/issues?q=is%3Aissue+is%3Aopen+label%3Ahacktoberfest
[hacktoberfest-badge]: https://img.shields.io/github/issues-raw/scorelab/ImageLab/hacktoberfest.svg?label=Hacktoberfest&color=purple
2 changes: 1 addition & 1 deletion imagelab_java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<skipTests>false</skipTests>
<skipTests>true</skipTests>
<includes>
<include>**/Test*.java</include>
<include>**/*Test.java</include>
Expand Down

0 comments on commit 69d25ad

Please # to comment.