buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.6.RELEASE") | |
} | |
} | |
apply plugin: 'java' | |
apply plugin: 'eclipse' | |
apply plugin: 'idea' | |
apply plugin: 'org.springframework.boot' | |
apply plugin: 'io.spring.dependency-management' | |
bootJar { | |
baseName = 'sistema-ventas-by-parzibyte' | |
version = '0.2.0' | |
} | |
repositories { | |
mavenCentral() | |
} | |
sourceCompatibility = 1.8 | |
targetCompatibility = 1.8 | |
configurations { | |
developmentOnly | |
runtimeClasspath { | |
extendsFrom developmentOnly | |
} | |
} | |
dependencies { | |
// https://mvnrepository.com/artifact/nz.net.ultraq.thymeleaf/thymeleaf-layout-dialect | |
compile group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '2.4.1' | |
compile("org.springframework.boot:spring-boot-starter-web") | |
testCompile('org.springframework.boot:spring-boot-starter-test') | |
testCompile('com.jayway.jsonpath:json-path') | |
compile("org.springframework.boot:spring-boot-starter-thymeleaf") | |
developmentOnly("org.springframework.boot:spring-boot-devtools") | |
compile 'org.springframework.boot:spring-boot-starter-data-jpa' | |
compile 'mysql:mysql-connector-java' | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment