2026-02-06 13:14:36 -05:00
|
|
|
/*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
|
// Apply the java plugin.
|
|
|
|
|
id 'java'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
java {
|
|
|
|
|
toolchain {
|
|
|
|
|
languageVersion = JavaLanguageVersion.of(25)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
group = 'edu.tictactoe'
|
|
|
|
|
version = '1.0'
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
// Use Maven Central for resolving dependencies.
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2026-02-06 15:07:46 -05:00
|
|
|
implementation("org.slf4j:slf4j-api:2.0.17")
|
|
|
|
|
implementation("ch.qos.logback:logback-classic:1.5.26")
|
2026-02-06 13:14:36 -05:00
|
|
|
implementation("org.aspectj:aspectjrt:1.9.25")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.named('jar') {
|
|
|
|
|
manifest {
|
2026-02-06 15:07:46 -05:00
|
|
|
attributes(
|
|
|
|
|
'Automatic-Module-Name':'edu.tictactoe',
|
|
|
|
|
'Implementation-Title': 'edu.tictactoe',
|
|
|
|
|
'Implementation-Version': 1.0,
|
|
|
|
|
'Main-Class': 'edu.tictactoe.App',
|
|
|
|
|
'Class-Path': 'edu.tictactoe org.aspectj.runtime' )
|
2026-02-06 13:14:36 -05:00
|
|
|
}
|
|
|
|
|
}
|