Skip to content

Commit

Permalink
[java-truffle] don't exclude graal-sdk dependency
Browse files Browse the repository at this point in the history
I added the exclusion as a hack to work around classpath
issues after importing the project into Eclipse, but this
isn't the right thing to do.

It prevents compilation on JDKs other than Graal, which was
not my intent.
  • Loading branch information
mmcgill authored and kanaka committed Jul 11, 2021
1 parent 13bb041 commit 8d875b0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions impls/java-truffle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ repositories {
}

dependencies {
implementation('org.graalvm.truffle:truffle-api:21.1.0') {
exclude group: 'org.graalvm.sdk', module: 'graal-sdk'
}
implementation 'org.graalvm.truffle:truffle-api:21.1.0'
implementation 'org.organicdesign:Paguro:3.2.0'
annotationProcessor 'org.graalvm.truffle:truffle-dsl-processor:21.1.0'
}
Expand Down

0 comments on commit 8d875b0

Please sign in to comment.