diff --git a/server/build.gradle.kts b/server/build.gradle.kts index 8c88c02..bf0cbf5 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -1,7 +1,7 @@ plugins { java - id ("org.springframework.boot") version "2.6.7" - id ("io.spring.dependency-management") version "1.0.11.RELEASE" + id("org.springframework.boot") version "2.6.7" + id("io.spring.dependency-management") version "1.0.11.RELEASE" } group = "com.ticketing" @@ -26,14 +26,14 @@ repositories { dependencies { - implementation ("org.springframework.boot:spring-boot-starter-data-jpa") - implementation ("org.springframework.boot:spring-boot-starter-security") - implementation ("org.springframework.boot:spring-boot-starter-validation") - implementation ("org.springframework.boot:spring-boot-starter-web") + implementation("org.springframework.boot:spring-boot-starter-data-jpa") + implementation("org.springframework.boot:spring-boot-starter-security") + implementation("org.springframework.boot:spring-boot-starter-validation") + implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter-actuator") - implementation ("com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.4") - implementation ("org.springframework.boot:spring-boot-starter-log4j2") - implementation ("com.lmax:disruptor:3.4.2") + implementation("com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.4") + implementation("org.springframework.boot:spring-boot-starter-log4j2") + implementation("com.lmax:disruptor:3.4.2") modules { module("org.springframework.boot:spring-boot-starter-logging") { @@ -41,12 +41,12 @@ dependencies { } } - compileOnly ("org.projectlombok:lombok") - runtimeOnly ("mysql:mysql-connector-java") - annotationProcessor ("org.projectlombok:lombok") + compileOnly("org.projectlombok:lombok") + runtimeOnly("mysql:mysql-connector-java") + annotationProcessor("org.projectlombok:lombok") - testImplementation ("org.springframework.boot:spring-boot-starter-test") - testImplementation ("org.springframework.security:spring-security-test") + testImplementation("org.springframework.boot:spring-boot-starter-test") + testImplementation("org.springframework.security:spring-security-test") } tasks.withType {