check draw.

This commit is contained in:
2026-02-06 18:59:10 -05:00
parent ba6229c654
commit 56f5ea2615
6 changed files with 63 additions and 10 deletions
+11
View File
@@ -4,6 +4,7 @@
plugins {
// Apply the java plugin.
id 'java'
id("io.freefair.aspectj") version "9.2.0"
}
java {
@@ -26,6 +27,16 @@ dependencies {
implementation("org.aspectj:aspectjrt:1.9.25")
}
jar {
manifest {
attributes 'Automatic-Module-Name':'edu.tictactoe',
'Main-Class': 'edu.tictactoe.App',
'Class-Path': 'edu.tictactoe org.aspectj.runtime'
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
}
tasks.named('jar') {
manifest {
attributes(