andreybavt commited on
Commit
4c3d188
·
1 Parent(s): 87673f6
build.gradle.kts CHANGED
@@ -29,8 +29,6 @@ dependencies {
29
  implementation("org.springframework.boot:spring-boot-starter-security")
30
  implementation("org.springframework.boot:spring-boot-starter-web")
31
  implementation("org.springframework.boot:spring-boot-starter-websocket")
32
- testImplementation("org.springframework.boot:spring-boot-starter-test")
33
- testImplementation("org.springframework.security:spring-security-test")
34
 
35
  // -----------------------------------------------------------------------------------------------------------------------------------------------
36
 
@@ -40,7 +38,6 @@ dependencies {
40
  implementation("io.grpc:grpc-stub:$grpcVersion")
41
 
42
 
43
- testImplementation("io.grpc:grpc-testing:$grpcVersion")
44
 
45
  // implementation(platform("tech.jhipster:jhipster-dependencies:${jhipsterDependenciesVersion}"))
46
  // implementation(group = "tech.jhipster", name = "jhipster-framework")
@@ -75,7 +72,6 @@ dependencies {
75
  implementation("org.springframework.boot:spring-boot-starter-data-jpa")
76
  implementation("org.springframework.boot:spring-boot-starter-websocket")
77
  implementation("org.springframework.security:spring-security-messaging")
78
- testImplementation("org.testcontainers:postgresql")
79
  implementation("org.springframework.boot:spring-boot-starter-security")
80
  implementation("org.springframework.boot:spring-boot-starter-web") {
81
  exclude(module = "spring-boot-starter-tomcat")
@@ -99,15 +95,10 @@ dependencies {
99
  implementation("org.postgresql:postgresql")
100
 
101
  implementation("com.h2database:h2")
102
- testImplementation("com.h2database:h2")
103
  //
104
  //
105
  //// annotationProcessor("org.hibernate:hibernate-jpamodelgen:${hibernateVersion}.Final")
106
  // annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}")
107
- // testImplementation("org.springframework.boot:spring-boot-starter-test")
108
- // testImplementation("org.springframework.security:spring-security-test")
109
- // testImplementation("org.springframework.boot:spring-boot-test")
110
- // testImplementation("com.tngtech.archunit:archunit-junit5-api:${archunitJunit5Version}")
111
  // testRuntimeOnly("com.tngtech.archunit:archunit-junit5-engine:${archunitJunit5Version}")
112
  // developmentOnly("org.springframework.boot:spring-boot-devtools:${springBootVersion}")
113
  //// protobuf(files("../common/proto"))
 
29
  implementation("org.springframework.boot:spring-boot-starter-security")
30
  implementation("org.springframework.boot:spring-boot-starter-web")
31
  implementation("org.springframework.boot:spring-boot-starter-websocket")
 
 
32
 
33
  // -----------------------------------------------------------------------------------------------------------------------------------------------
34
 
 
38
  implementation("io.grpc:grpc-stub:$grpcVersion")
39
 
40
 
 
41
 
42
  // implementation(platform("tech.jhipster:jhipster-dependencies:${jhipsterDependenciesVersion}"))
43
  // implementation(group = "tech.jhipster", name = "jhipster-framework")
 
72
  implementation("org.springframework.boot:spring-boot-starter-data-jpa")
73
  implementation("org.springframework.boot:spring-boot-starter-websocket")
74
  implementation("org.springframework.security:spring-security-messaging")
 
75
  implementation("org.springframework.boot:spring-boot-starter-security")
76
  implementation("org.springframework.boot:spring-boot-starter-web") {
77
  exclude(module = "spring-boot-starter-tomcat")
 
95
  implementation("org.postgresql:postgresql")
96
 
97
  implementation("com.h2database:h2")
 
98
  //
99
  //
100
  //// annotationProcessor("org.hibernate:hibernate-jpamodelgen:${hibernateVersion}.Final")
101
  // annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}")
 
 
 
 
102
  // testRuntimeOnly("com.tngtech.archunit:archunit-junit5-engine:${archunitJunit5Version}")
103
  // developmentOnly("org.springframework.boot:spring-boot-devtools:${springBootVersion}")
104
  //// protobuf(files("../common/proto"))
src/test/java/ai/giskard/learnspringwebsockets/LearnSpringWebsocketsApplicationTests.java DELETED
@@ -1,13 +0,0 @@
1
- package ai.giskard.learnspringwebsockets;
2
-
3
- import org.junit.jupiter.api.Test;
4
- import org.springframework.boot.test.context.SpringBootTest;
5
-
6
- @SpringBootTest
7
- class LearnSpringWebsocketsApplicationTests {
8
-
9
- @Test
10
- void contextLoads() {
11
- }
12
-
13
- }