Last active
July 31, 2023 13:58
-
-
Save drucoder/59c795e4dda47935a146980312c561e5 to your computer and use it in GitHub Desktop.
Sarafan: Add db support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
compile('org.springframework.boot:spring-boot-starter-data-jpa') | |
compile('org.postgresql:postgresql') | |
compile('org.projectlombok:lombok') | |
compile('javax.xml.bind:jaxb-api') | |
compile('com.sun.xml.bind:jaxb-core') | |
compile('com.sun.xml.bind:jaxb-impl') |
It work
implementation 'org.springframework.boot:spring-boot-starter-web'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'org.postgresql:postgresql'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"compile" deprecated, update gist to use "implementation" please