added next

This commit is contained in:
Jottyfan
2024-07-30 10:43:25 +02:00
parent aadfdfa9b5
commit e3ebc387bb
12 changed files with 436 additions and 139 deletions

View File

@ -1,17 +1,23 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.0'
id "io.spring.dependency-management" version "1.1.4"
id 'org.springframework.boot' version '3.3.2'
id "io.spring.dependency-management" version "1.1.6"
id 'war'
id 'eclipse'
id 'application'
}
group = 'de.jottyfan.bico'
version = '0.1.0'
version = '0.1.1'
description = """BibleClassOrganizer"""
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
sourceCompatibility = 17
targetCompatibility = 17
@ -35,9 +41,9 @@ war {
"Implementation-Timestamp": new Date())
}
}
baseName = project.name
version = version
archiveName = 'BiCO.war'
archiveBaseName = project.name
archiveVersion = version
archiveFileName = 'BiCO.war'
}
dependencies {
@ -52,10 +58,10 @@ dependencies {
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:latest.release'
implementation 'org.springframework.security:spring-security-oauth2-client'
implementation 'org.webjars:bootstrap:5.3.2'
implementation 'org.webjars.npm:bootstrap-icons:1.10.5'
implementation 'org.webjars:bootstrap:5.3.3'
implementation 'org.webjars.npm:bootstrap-icons:1.11.3'
implementation 'org.webjars:jquery:3.7.1'
implementation 'org.webjars:datatables:1.13.5'
implementation 'org.webjars:datatables:2.1.0'
implementation 'org.springframework.boot:spring-boot-devtools'