-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (51 loc) · 1.99 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
buildscript {
ext {
springBootVersion = '2.0.4.RELEASE'
}
repositories {
mavenCentral()
maven {url "https://plugins.gradle.org/m2/"}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath "gradle.plugin.com.scalified.plugins.gradle:metamodel:0.0.1"
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: "com.scalified.plugins.gradle.metamodel"
metamodel {
srcDir = 'src/generated/java' // metamodel generated source directory
hibernateVersion = '+' // hibernate static metamodel generator version
}
group = 'de.aklingauf'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {url 'http://repo.spring.io/plugins-release/'}
maven {url 'https://ignite.apache.org/download.cgi#3rdparty'}
}
dependencies {
compile('org.springframework.boot:spring-boot-starter')
compile('org.springframework.boot:spring-boot-starter-web')
compile('com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.3')
compile('org.springframework.data:spring-data-jpa:2.0.9.RELEASE')
compile('org.springframework.boot:spring-boot-starter-data-jpa:2.0.4.RELEASE')
compile('org.springframework.data:spring-data-commons:2.0.9.RELEASE')
compile('org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.2.Final')
compile('javax.validation:validation-api:2.0.1.Final')
compile('org.springframework:spring-web:5.0.8.RELEASE')
implementation('org.postgresql:postgresql')
compile('org.hibernate:hibernate-core:5.3.6.Final')
testCompile('org.springframework.boot:spring-boot-starter-test')
compile("org.springframework.boot:spring-boot-starter-security")
compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1'
// JAX-B dependencies for JDK 9+
implementation "jakarta.xml.bind:jakarta.xml.bind-api:2.3.2"
implementation "org.glassfish.jaxb:jaxb-runtime:2.3.2"
runtime("com.h2database:h2:1.3.176")
}