build.gradle
123456789101112131415161718192021222324252627282930313233buildscript { repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE") }}apply plugin: 'java'apply plugin: 'eclipse'apply plugin: 'idea'apply plugin: 'spring-boot'jar { baseName = 'gs-serving-web-content' version = '0.1.0'}repositories { mavenCentral()}sourceCompatibility = 1.8targetCompatibility = 1.8dependencies { compile("org.springframework.boot:spring-boot-starter-thymeleaf") compile("org.springframework:spring-jdbc") compile("mysql:mysql-connector-java:5.1.24") compile("org.springframework.boot:spring-boot-devtools") testCompile("junit:junit")}
|
|