1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-05 18:08:55 +03:00
mal/impls/java-truffle/build.gradle
mmcgill 8d875b00b0 [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.
2021-07-11 17:52:32 -06:00

29 lines
559 B
Groovy

/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2')
}
}
dependencies {
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'
}
group = 'com.github.mmcgill'
version = '0.0.1'
sourceCompatibility = '11'
task printClasspath {
println sourceSets.main.runtimeClasspath.getAsPath()
}