initial commit

This commit is contained in:
Daniil Barodkin
2026-06-06 23:29:11 +03:00
commit e8ffcd7526
23 changed files with 881 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
plugins {
id 'java'
id 'org.springframework.boot' version '4.0.6'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'org.redjinald'
version = '0.0.1-SNAPSHOT'
description = 'autodj_backend'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(25)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-amqp'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-flyway'
implementation 'org.telegram:telegrambots-spring-boot-starter:6.9.7.1'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.xerial:sqlite-jdbc'
implementation 'org.hibernate.orm:hibernate-community-dialects'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-amqp-test'
testImplementation 'org.springframework.boot:spring-boot-starter-data-jpa-test'
testImplementation 'org.springframework.boot:spring-boot-starter-flyway-test'
testCompileOnly 'org.projectlombok:lombok'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testAnnotationProcessor 'org.projectlombok:lombok'
}
tasks.named('test') {
useJUnitPlatform()
}