-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
61 lines (51 loc) · 1.95 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
plugins {
id 'org.springframework.boot' version '2.5.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'scala'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// implementation 'dev.zio:zio_3:1.0.12'
// implementation 'dev.zio:zio-config_3:1.0.10'
implementation 'org.typelevel:cats-effect_3:3.2.9'
implementation 'org.scala-lang:scala3-library_3:3.0.2'
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.5'
implementation 'org.springframework.boot:spring-boot-starter-security:2.5.5'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.5.5'
implementation 'org.springframework.security:spring-security-test:5.5.1'
implementation 'io.circe:circe-core_3:0.14.1'
implementation 'io.circe:circe-generic_3:0.14.1'
implementation 'io.circe:circe-parser_3:0.14.1'
implementation 'org.tpolecat:doobie-core_3:1.0.0-RC1'
implementation 'org.tpolecat:doobie-postgres_3:1.0.0-RC1'
developmentOnly 'org.springframework.boot:spring-boot-devtools:2.5.5'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:2.5.5'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.5'
testImplementation 'org.scalatest:scalatest_3:3.2.10'
testImplementation 'org.scalatestplus:mockito-3-12_3:3.2.10.0'
// TODO: remove this. see: https://github.com/scalatest/scalatest/issues/1454
testImplementation 'co.helmethair:scalatest-junit-runner:0.1.10'
testImplementation 'dev.zio:zio-test_3:1.0.12'
testImplementation 'org.tpolecat:doobie-scalatest_3:1.0.0-RC1'
}
test {
useJUnitPlatform {
includeEngines 'scalatest'
testLogging {
events("passed", "skipped", "failed")
}
}
}
//test {
// useJUnitPlatform()
//}