Squashed 'Programming/ProgLab6/' content from commit 3e98b8e

git-subtree-dir: Programming/ProgLab6
git-subtree-split: 3e98b8e205b1a576c861f90028b198d5052a79c3
This commit is contained in:
LeterZP
2026-05-17 15:29:12 +03:00
commit 1d57fb83a4
62 changed files with 2722 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
group = 'com.leterzp.prog.server'
version = '2.0'
dependencies {
implementation project(':general')
}
apply plugin: 'com.gradleup.shadow'
shadowJar {
archiveBaseName.set('ProgLab6.server')
archiveVersion.set('2.0')
manifest {
attributes 'Main-Class': 'ServerKt'
}
}