Skip to content

Commit bce51f4

Browse files
committed
Polishing.
Moved Kotlin files to kotlin source directory. Minor formatting. See #1961 Original pull request #1962
1 parent 8d1e0e1 commit bce51f4

File tree

4 files changed

+225
-183
lines changed

4 files changed

+225
-183
lines changed

spring-data-jdbc/pom.xml

+12-13
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,18 @@
7474
<artifactId>spring-core</artifactId>
7575
</dependency>
7676

77+
<dependency>
78+
<groupId>org.jetbrains.kotlin</groupId>
79+
<artifactId>kotlin-stdlib</artifactId>
80+
<optional>true</optional>
81+
</dependency>
82+
83+
<dependency>
84+
<groupId>org.jetbrains.kotlin</groupId>
85+
<artifactId>kotlin-reflect</artifactId>
86+
<optional>true</optional>
87+
</dependency>
88+
7789
<dependency>
7890
<groupId>org.mybatis</groupId>
7991
<artifactId>mybatis-spring</artifactId>
@@ -246,19 +258,6 @@
246258
<version>${hikari.version}</version>
247259
<scope>test</scope>
248260
</dependency>
249-
250-
<!-- Kotlin extension -->
251-
<dependency>
252-
<groupId>org.jetbrains.kotlin</groupId>
253-
<artifactId>kotlin-stdlib</artifactId>
254-
<optional>true</optional>
255-
</dependency>
256-
257-
<dependency>
258-
<groupId>org.jetbrains.kotlin</groupId>
259-
<artifactId>kotlin-reflect</artifactId>
260-
<optional>true</optional>
261-
</dependency>
262261
</dependencies>
263262

264263
<build>

spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/JdbcAggregateOperationsExtensions.kt spring-data-jdbc/src/main/kotlin/org/springframework/data/jdbc/core/JdbcAggregateOperationsExtensions.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2024 the original author or authors.
2+
* Copyright 2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,17 +13,17 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.springframework.data.jdbc.core
1718

1819
import org.springframework.data.domain.Page
1920
import org.springframework.data.domain.Pageable
2021
import org.springframework.data.domain.Sort
2122
import org.springframework.data.relational.core.query.Query
22-
2323
import java.util.Optional
2424

2525
/**
26-
* Extensions for [JdbcAggregateOperations].
26+
* Kotlin extensions for [JdbcAggregateOperations].
2727
*
2828
* @author Felix Desyatirikov
2929
* @since 3.5

spring-data-jdbc/src/test/java/org/springframework/data/jdbc/core/JdbcAggregateOperationsExtensionsTests.kt

-167
This file was deleted.

0 commit comments

Comments
 (0)