Skip to content

Commit 2359357

Browse files
sdeleuzeodrotbohm
authored andcommitted
DATAMONGO-1689 - Add Kotlin extensions for [Reactive]MongoOperations.
We now offer dedicated Kotlin extensions for MongoOperations and ReactiveMongoOperations. Original pull request: #463.
1 parent a90f238 commit 2359357

File tree

5 files changed

+1973
-0
lines changed

5 files changed

+1973
-0
lines changed

spring-data-mongodb/pom.xml

+83
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<properties>
1919
<objenesis>1.3</objenesis>
2020
<equalsverifier>1.5</equalsverifier>
21+
<kotlin>1.1.2-3</kotlin>
2122
</properties>
2223

2324
<dependencies>
@@ -230,12 +231,94 @@
230231
<artifactId>spring-webmvc</artifactId>
231232
<scope>test</scope>
232233
</dependency>
234+
<dependency>
235+
<groupId>org.jetbrains.kotlin</groupId>
236+
<artifactId>kotlin-stdlib-jre8</artifactId>
237+
<version>${kotlin}</version>
238+
<optional>true</optional>
239+
</dependency>
240+
<dependency>
241+
<groupId>org.jetbrains.kotlin</groupId>
242+
<artifactId>kotlin-reflect</artifactId>
243+
<version>${kotlin}</version>
244+
<optional>true</optional>
245+
</dependency>
246+
<dependency>
247+
<groupId>org.jetbrains.kotlin</groupId>
248+
<artifactId>kotlin-test</artifactId>
249+
<version>${kotlin}</version>
250+
<scope>test</scope>
251+
</dependency>
252+
<dependency>
253+
<groupId>com.nhaarman</groupId>
254+
<artifactId>mockito-kotlin</artifactId>
255+
<version>1.4.0</version>
256+
<scope>test</scope>
257+
</dependency>
233258

234259
</dependencies>
235260

236261
<build>
237262
<plugins>
238263

264+
<plugin>
265+
<artifactId>kotlin-maven-plugin</artifactId>
266+
<groupId>org.jetbrains.kotlin</groupId>
267+
<version>${kotlin}</version>
268+
<configuration>
269+
<jvmTarget>1.8</jvmTarget>
270+
</configuration>
271+
<executions>
272+
<execution>
273+
<id>compile</id>
274+
<phase>compile</phase>
275+
<goals> <goal>compile</goal> </goals>
276+
<configuration>
277+
<sourceDirs>
278+
<sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
279+
<sourceDir>${project.basedir}/src/main/java</sourceDir>
280+
</sourceDirs>
281+
</configuration>
282+
</execution>
283+
<execution>
284+
<id>test-compile</id>
285+
<phase>test-compile</phase>
286+
<goals> <goal>test-compile</goal> </goals>
287+
<configuration>
288+
<sourceDirs>
289+
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
290+
<sourceDir>${project.basedir}/src/test/java</sourceDir>
291+
</sourceDirs>
292+
</configuration>
293+
</execution>
294+
</executions>
295+
</plugin>
296+
297+
<plugin>
298+
<groupId>org.apache.maven.plugins</groupId>
299+
<artifactId>maven-compiler-plugin</artifactId>
300+
<executions>
301+
<execution>
302+
<id>default-compile</id>
303+
<phase>none</phase>
304+
</execution>
305+
<execution>
306+
<id>default-testCompile</id>
307+
<phase>none</phase>
308+
</execution>
309+
<execution>
310+
<id>java-compile</id>
311+
<phase>compile</phase>
312+
<goals> <goal>compile</goal> </goals>
313+
</execution>
314+
<execution>
315+
<id>java-test-compile</id>
316+
<phase>test-compile</phase>
317+
<goals> <goal>testCompile</goal> </goals>
318+
</execution>
319+
</executions>
320+
</plugin>
321+
239322
<plugin>
240323
<groupId>com.mysema.maven</groupId>
241324
<artifactId>apt-maven-plugin</artifactId>

0 commit comments

Comments
 (0)