javapathfinder / jpf-core

JPF is an extensible software analysis framework for Java bytecode. jpf-core is the basis for all JPF projects; you always need to install it. It contains the basic VM and model checking infrastructure, and can be used to check for concurrency defects like deadlocks, and unhandled exceptions like NullPointerExceptions and AssertionErrors.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

getting error while running gradlew command

gaurangkudale opened this issue · comments

FAILURE: Build failed with an exception.

  • Where:
    Build file 'C:\Users\gaura\jpf\jpf-core\build.gradle' line: 24

  • What went wrong:
    A problem occurred evaluating root project 'jpf-core'.

Could not find method testCompile() for arguments [org.ow2.asm:asm:7.1] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

  • Try:

Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.

BUILD FAILED in 13s

Hi @cyrille-artho
I'm getting this error while trying to run the gradlew command on my machine

Can you please post the whole report?
Are you using a newer version of gradle than the one we typically use?
If you use the wrapper with ./gradlew (note the "w"), it will use a specific version of gradle which we have also tested.
Also, make sure you use Java 8 for the main branch and Java 11 for branch java-10-gradle.

  1. The Gradle version which I'm using is 7.3.1
  2. Yes I am using java 8 for the main branch
  3. currently I'm using windows OS ./gradlew is not for windows (correct me if I'm wrong)
    I'll post a whole report
  1. Did you try to run ./gradlew wrapper.

Hi @cyrille-artho
when I restart my machine and ran the same command at that time I was not getting any errors besides that some tests were falling now I guess you can close this issue and Is there any update or changes needed in Gradle I can do that as well
Can I update the Gradle version to the latest 7.3.3 to JPF-CORE?

Any updates?

Maybe it can lead to lot of issues if you update it to 7.3.3

If you use the Gradle wrapper ./gradlew, then you are using the same version for Gradle that everyone else uses with JPF. This is supposed to work.
If you use a different version of Gradle (with gradle), then you might run into problems.
If you manage to port the current build to a newer version of Gradle, that is very welcome; we will accept PRs that upgrade Gradle as long as it works both on the master branch and on branch jpf-10-gradle.