This repository has been archived on 2022-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Triangle-Tools/Triangle.Compiler/build.gradle
T

21 lines
405 B
Groovy

apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
implementation project(':Triangle.AbstractMachine')
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}
application {
mainClass = 'Triangle.Compiler'
}
// allow access to programs for unit tests
sourceSets.test.resources.srcDir file("$rootDir/programs")