cleaning and adding updates

This commit is contained in:
2026-08-20 17:24:55 -04:00
parent 4ac3c6fa69
commit 80166c477b
70 changed files with 471 additions and 284 deletions
+22 -12
View File
@@ -1,5 +1,12 @@
plugins {
id 'java'
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22'
}
}
allprojects {
@@ -7,23 +14,26 @@ allprojects {
version = '0.1.0'
repositories {
google()
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
if (name != 'a3270') {
apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
test {
useJUnitPlatform()
}
test {
useJUnitPlatform()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
}
}
}