inital commit кек

This commit is contained in:
SashegDev
2026-06-04 03:12:17 +00:00
parent 82675f402d
commit f2888dea3a
190 changed files with 18421 additions and 21 deletions
+19
View File
@@ -0,0 +1,19 @@
apply plugin: 'application'
mainClassName = 'com.cbe.cbecc.Main'
dependencies {
implementation project(':modules:core')
implementation project(':modules:loader')
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
}
application {
applicationName = 'cbecc'
}
task runDemo(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
mainClass = 'com.cbe.cbecc.DemoMain'
workingDir = rootProject.projectDir
}