Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
31 righe
661 B
31 righe
661 B
5 anni fa
|
buildscript {
|
||
|
ext {
|
||
|
springBootVersion = '1.5.2.RELEASE'
|
||
|
}
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'eclipse'
|
||
|
apply plugin: 'org.springframework.boot'
|
||
|
|
||
|
version = '1.0.0'
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile('org.springframework.boot:spring-boot-starter')
|
||
|
compile('org.springframework.boot:spring-boot-starter-data-jpa')
|
||
|
runtime('org.postgresql:postgresql')
|
||
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||
|
|
||
|
compile files('src/main/lib/db2jcc4.jar')
|
||
|
}
|