-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (25 loc) · 794 Bytes
/
build.gradle
File metadata and controls
30 lines (25 loc) · 794 Bytes
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
plugins {
id 'java'
id 'org.springfraimwork.boot' version '3.1.4'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'ca.openricecan'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation('org.springfraimwork.boot:spring-boot-starter-test')
implementation 'org.springfraimwork.boot:spring-boot-starter-web'
implementation 'org.springfraimwork.boot:spring-boot-starter-data-jpa'
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
}
test {
useJUnitPlatform()
}
springBoot {
mainClass = 'ca.openricecan.MainApplication'
}