Skip to content

Commit f646cd2

Browse files
committed
fix maven dependencies import
1 parent af87e8b commit f646cd2

21 files changed

Lines changed: 84 additions & 0 deletions

File tree

  • samples/server/petstore
    • kotlin-spring-default
    • kotlin-springboot-3-no-response-entity
    • kotlin-springboot-3
    • kotlin-springboot-additionalproperties
    • kotlin-springboot-bigdecimal-default
    • kotlin-springboot-delegate-nodefaults
    • kotlin-springboot-delegate
    • kotlin-springboot-include-http-request-context-delegate
    • kotlin-springboot-integer-enum
    • kotlin-springboot-modelMutable
    • kotlin-springboot-multipart-request-model
    • kotlin-springboot-no-response-entity-delegate
    • kotlin-springboot-no-response-entity
    • kotlin-springboot-reactive-without-flow
    • kotlin-springboot-reactive
    • kotlin-springboot-source-swagger1
    • kotlin-springboot-source-swagger2
    • kotlin-springboot-springfox
    • kotlin-springboot-x-kotlin-implements
    • kotlin-springboot

samples/server/petstore/kotlin-spring-default/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@
8686
<groupId>org.springframework.boot</groupId>
8787
<artifactId>spring-boot-starter-web</artifactId>
8888
</dependency>
89+
<dependency>
90+
<groupId>org.springframework.data</groupId>
91+
<artifactId>spring-data-commons</artifactId>
92+
</dependency>
8993

9094
<!--SpringDoc dependencies -->
9195
<dependency>

samples/server/petstore/kotlin-springboot-3-no-response-entity/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@
9898
<groupId>org.springframework.boot</groupId>
9999
<artifactId>spring-boot-starter-web</artifactId>
100100
</dependency>
101+
<dependency>
102+
<groupId>org.springframework.data</groupId>
103+
<artifactId>spring-data-commons</artifactId>
104+
</dependency>
101105

102106

103107

samples/server/petstore/kotlin-springboot-3/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@
9898
<groupId>org.springframework.boot</groupId>
9999
<artifactId>spring-boot-starter-web</artifactId>
100100
</dependency>
101+
<dependency>
102+
<groupId>org.springframework.data</groupId>
103+
<artifactId>spring-data-commons</artifactId>
104+
</dependency>
101105

102106

103107

samples/server/petstore/kotlin-springboot-additionalproperties/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@
9898
<groupId>org.springframework.boot</groupId>
9999
<artifactId>spring-boot-starter-web</artifactId>
100100
</dependency>
101+
<dependency>
102+
<groupId>org.springframework.data</groupId>
103+
<artifactId>spring-data-commons</artifactId>
104+
</dependency>
101105

102106

103107

samples/server/petstore/kotlin-springboot-bigdecimal-default/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@
8686
<groupId>org.springframework.boot</groupId>
8787
<artifactId>spring-boot-starter-web</artifactId>
8888
</dependency>
89+
<dependency>
90+
<groupId>org.springframework.data</groupId>
91+
<artifactId>spring-data-commons</artifactId>
92+
</dependency>
8993

9094
<!--SpringDoc dependencies -->
9195
<dependency>

samples/server/petstore/kotlin-springboot-delegate-nodefaults/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@
9999
<groupId>org.springframework.boot</groupId>
100100
<artifactId>spring-boot-starter-web</artifactId>
101101
</dependency>
102+
<dependency>
103+
<groupId>org.springframework.data</groupId>
104+
<artifactId>spring-data-commons</artifactId>
105+
</dependency>
102106

103107

104108
<dependency>

samples/server/petstore/kotlin-springboot-delegate/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@
8686
<groupId>org.springframework.boot</groupId>
8787
<artifactId>spring-boot-starter-web</artifactId>
8888
</dependency>
89+
<dependency>
90+
<groupId>org.springframework.data</groupId>
91+
<artifactId>spring-data-commons</artifactId>
92+
</dependency>
8993

9094
<!--SpringDoc dependencies -->
9195
<dependency>

samples/server/petstore/kotlin-springboot-include-http-request-context-delegate/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@
9797
<artifactId>kotlinx-coroutines-reactor</artifactId>
9898
<version>${kotlinx-coroutines.version}</version>
9999
</dependency>
100+
<dependency>
101+
<groupId>org.springframework.data</groupId>
102+
<artifactId>spring-data-commons</artifactId>
103+
</dependency>
100104

101105

102106
<dependency>

samples/server/petstore/kotlin-springboot-integer-enum/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@
9898
<groupId>org.springframework.boot</groupId>
9999
<artifactId>spring-boot-starter-web</artifactId>
100100
</dependency>
101+
<dependency>
102+
<groupId>org.springframework.data</groupId>
103+
<artifactId>spring-data-commons</artifactId>
104+
</dependency>
101105

102106

103107

samples/server/petstore/kotlin-springboot-modelMutable/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@
8686
<groupId>org.springframework.boot</groupId>
8787
<artifactId>spring-boot-starter-web</artifactId>
8888
</dependency>
89+
<dependency>
90+
<groupId>org.springframework.data</groupId>
91+
<artifactId>spring-data-commons</artifactId>
92+
</dependency>
8993

9094
<!--SpringDoc dependencies -->
9195
<dependency>

0 commit comments

Comments
 (0)