Skip to content

Commit 2fd2119

Browse files
committed
Prepare issue branch.
1 parent 6e85051 commit 2fd2119

File tree

4 files changed

+34
-10
lines changed

4 files changed

+34
-10
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-mongodb-parent</artifactId>
8-
<version>4.4.0-SNAPSHOT</version>
8+
<version>4.4.0-GH-4818-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

1111
<name>Spring Data MongoDB</name>
@@ -26,10 +26,10 @@
2626
<properties>
2727
<project.type>multi</project.type>
2828
<dist.id>spring-data-mongodb</dist.id>
29-
<springdata.commons>3.4.0-SNAPSHOT</springdata.commons>
29+
<springdata.commons>3.4.0-GH-3185-SNAPSHOT</springdata.commons>
3030
<mongo>5.2.0</mongo>
3131
<mongo.reactivestreams>${mongo}</mongo.reactivestreams>
32-
<jmh.version>1.19</jmh.version>
32+
<jmh.version>1.37</jmh.version>
3333
</properties>
3434

3535
<developers>

spring-data-mongodb-benchmarks/pom.xml

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.data</groupId>
99
<artifactId>spring-data-mongodb-parent</artifactId>
10-
<version>4.4.0-SNAPSHOT</version>
10+
<version>4.4.0-GH-4818-SNAPSHOT</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -19,8 +19,16 @@
1919
<properties>
2020
<!-- Skip tests by default; run only if -DskipTests=false is specified or benchmarks profile is activated -->
2121
<skipTests>true</skipTests>
22+
<source.level>17</source.level>
2223
</properties>
2324

25+
<repositories>
26+
<repository>
27+
<id>jitpack.io</id>
28+
<url>https://jitpack.io</url>
29+
</repository>
30+
</repositories>
31+
2432
<dependencies>
2533

2634
<dependency>
@@ -30,10 +38,15 @@
3038
</dependency>
3139

3240
<dependency>
33-
<groupId>junit</groupId>
34-
<artifactId>junit</artifactId>
35-
<version>${junit}</version>
36-
<scope>compile</scope>
41+
<groupId>org.mongodb</groupId>
42+
<artifactId>mongodb-driver-sync</artifactId>
43+
<version>${mongo}</version>
44+
</dependency>
45+
46+
<dependency>
47+
<groupId>com.github.mp911de.microbenchmark-runner</groupId>
48+
<artifactId>microbenchmark-runner-junit5</artifactId>
49+
<version>0.4.0.RELEASE</version>
3750
</dependency>
3851

3952
<dependency>
@@ -63,6 +76,17 @@
6376

6477
<build>
6578
<plugins>
79+
<plugin>
80+
<groupId>org.apache.maven.plugins</groupId>
81+
<artifactId>maven-compiler-plugin</artifactId>
82+
<configuration>
83+
<annotationProcessors>
84+
<annotationProcessor>
85+
org.openjdk.jmh.generators.BenchmarkProcessor
86+
</annotationProcessor>
87+
</annotationProcessors>
88+
</configuration>
89+
</plugin>
6690
<plugin>
6791
<groupId>pl.project13.maven</groupId>
6892
<artifactId>git-commit-id-plugin</artifactId>

spring-data-mongodb-distribution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>org.springframework.data</groupId>
1717
<artifactId>spring-data-mongodb-parent</artifactId>
18-
<version>4.4.0-SNAPSHOT</version>
18+
<version>4.4.0-GH-4818-SNAPSHOT</version>
1919
<relativePath>../pom.xml</relativePath>
2020
</parent>
2121

spring-data-mongodb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.data</groupId>
1515
<artifactId>spring-data-mongodb-parent</artifactId>
16-
<version>4.4.0-SNAPSHOT</version>
16+
<version>4.4.0-GH-4818-SNAPSHOT</version>
1717
<relativePath>../pom.xml</relativePath>
1818
</parent>
1919

0 commit comments

Comments
 (0)