1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-05 18:08:55 +03:00

[java-truffle] don't exclude graal-sdk dependency

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.
This commit is contained in:
mmcgill 2021-06-07 09:00:33 -04:00 committed by Joel Martin
parent 13bb041072
commit 8d875b00b0

View File

@ -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'
}