Add OnlineQuiz app

This commit is contained in:
2025-10-26 19:35:59 +01:00
parent bd757d5ceb
commit aae358b2be
19 changed files with 1367 additions and 6 deletions

28
OnlineQuiz/build.gradle Normal file
View File

@@ -0,0 +1,28 @@
import org.springframework.boot.gradle.plugin.SpringBootPlugin
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
description = 'Secure Online Quiz Application'
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
repositories {
mavenCentral()
}
dependencyManagement {
imports {
mavenBom SpringBootPlugin.BOM_COORDINATES
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
}