plugins { id 'java' id 'org.springframework.boot' version '3.4.3' id 'io.spring.dependency-management' version '1.1.7' } group = 'es.imunnic' version = '0.0.1-SNAPSHOT' java { toolchain { languageVersion = JavaLanguageVersion.of(17) } } repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.telegram:telegrambots-spring-boot-starter:6.9.7.0' implementation 'org.telegram:telegrambots-abilities:6.9.7.0' implementation 'org.springframework.boot:spring-boot-starter-logging' implementation 'com.squareup.okhttp3:okhttp:4.11.0' implementation 'org.json:json:20230227' implementation 'org.jsoup:jsoup:1.15.4' implementation 'com.rometools:rome:1.18.0' testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } tasks.named('test') { useJUnitPlatform() }