plugins { id 'java' id 'org.springframework.boot' version '3.3.4' id 'io.spring.dependency-management' version '1.1.4' } group = 'ite' version = '0.0.1-SNAPSHOT' java { sourceCompatibility = '17' } repositories { mavenCentral() } dependencies { implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation('org.springframework.boot:spring-boot-starter-validation') implementation("org.springframework.boot:spring-boot-starter-data-ldap") implementation('org.springframework.boot:spring-boot-starter-thymeleaf') // TODO 2: Add security related dependencies into project implementation("org.springframework.ldap:spring-ldap-core") implementation("com.unboundid:unboundid-ldapsdk") implementation("org.springframework:spring-tx") implementation('org.modelmapper:modelmapper:3.1.1') implementation "org.webjars:bootstrap:3.3.6" implementation "org.webjars:jquery:2.2.0" implementation "org.webjars:font-awesome:4.5.0" runtimeOnly('com.h2database:h2') testImplementation 'org.springframework.boot:spring-boot-starter-test' } tasks.named('test') { useJUnitPlatform() }