(fix) Dependencies and steps for building examples/java locally (#1653)

Co-authored-by: Vishal <vishal-biyani@users.noreply.github.com>
This commit is contained in:
Rahul M Chheda
2020-07-17 15:18:31 +05:30
committed by GitHub
co-authored by Vishal
parent 8e0571c7c9
commit 28f5cd7852
2 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ You can build the jar file in one of the two ways below based on your setup:
- You can use docker without the need to install JDK and Maven to build the jar file from source code:
```bash
$ ./build.sh
$ bash -x ./build.sh
```
- If you have JDK and Maven installed, you can directly build the JAR file using command:
+9 -1
View File
@@ -49,6 +49,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
</build>
@@ -61,4 +69,4 @@
</repository>
</repositories>
</project>
</project>