From 899abb4c5c96ab2f491c6b41f3b7f0b1ef6c5955 Mon Sep 17 00:00:00 2001 From: Eneko Nieto Date: Mon, 4 Jan 2021 00:31:22 +0100 Subject: [PATCH] =?UTF-8?q?Dependencias=20de=20JPA=20y=20OAuth=20Resource?= =?UTF-8?q?=20Server=20a=C3=B1adidas.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 86a73d4..87dbe06 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,6 +6,7 @@ plugins { war kotlin("jvm") version "1.4.21" kotlin("plugin.spring") version "1.4.21" + kotlin("plugin.jpa") version "1.4.21" } group = "eu.fosil" @@ -17,6 +18,8 @@ repositories { } dependencies { + implementation("org.springframework.boot:spring-boot-starter-data-jpa") + implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server") implementation("org.springframework.boot:spring-boot-starter-web") implementation("com.fasterxml.jackson.module:jackson-module-kotlin") implementation("org.jetbrains.kotlin:kotlin-reflect")