-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
31 lines (25 loc) · 953 Bytes
/
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
plugins {
id 'org.springframework.boot' version '2.1.8.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'org.postgresql:postgresql'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation "junit:junit:4.12"
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.3.1')
testImplementation('org.mockito:mockito-core:2.+')
testImplementation('org.mockito:mockito-junit-jupiter:2.18.3')
}
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'ca.mcgill.ecse321.eventregistration.EventRegistrationApplication'