You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
313 B
18 lines
313 B
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
sourceCompatibility = 11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation project(':Solutions.Triangle.AbstractMachine')
|
|
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'Triangle.Compiler'
|
|
}
|
|
|