I've following dependencies in my pom.xml.
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>2.4.0</version>
</dependency>
when i do mvn test the console output is as follows:
[ERROR] error reading C:\Users\harish\.m2\repository\com\jayway\restassured\rest-assured\2.4.0\rest-assured-2.4.0.jar; error in opening zip file
[ERROR] error reading C:\Users\harish\.m2\repository\mysql\mysql-connector-java\6.0.2\mysql-connector-java-6.0.2.jar; error in opening zip file
[ERROR] error reading C:\Users\harish\.m2\repository\junit\junit\4.12\junit-4.12.jar; error in opening zip file
These are the error showed up. I've no idea hot to resolve my project issue. I searched for several solutions through online. but, didn't help. If anyone know the reason for this kind of errors,please help. Thanks in advance.