8000 updated to spring data 3.2 (DE-767) · arangodb/spring-data@b239621 · GitHub
[go: up one dir, main page]

Skip to content

Commit b239621

Browse files
committed
updated to spring data 3.2 (DE-767)
1 parent 02f3acc commit b239621

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

.github/workflows/maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ jobs:
9696
fail-fast: false
9797
matrix:
9898
spring-boot-version:
99-
- 3.0.10
100-
- 3.1.3
99+
- 3.1.8
100+
- < 8000 span class="pl-s">3.2.2
101101

102102
steps:
103103
- uses: actions/checkout@v3
@@ -106,7 +106,7 @@ jobs:
106106
- name: Set up JDK
107107
uses: actions/setup-java@v3
108108
with:
109-
java-version: 17
109+
java-version: 21
110110
distribution: 'adopt'
111111
cache: maven
112112
- name: Start Database

integration-tests/pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.10</version>
8+
<version>3.2.2</version>
99
<relativePath/>
1010
</parent>
1111

1212
<groupId>com.arangodb</groupId>
1313
<artifactId>arangodb-spring-data-integration-tests</artifactId>
14-
<version>4.0.0</version>
14+
<version>4.1.0</version>
1515

1616
<name>arangodb-spring-data-integration-tests</name>
1717
<description>ArangoDB Spring Data Integration Tests</description>
@@ -26,11 +26,13 @@
2626
<groupId>com.arangodb</groupId>
2727
<artifactId>arangodb-spring-data</artifactId>
2828
<version>${project.version}</version>
29+
<scope>test</scope>
2930
</dependency>
3031
<dependency>
3132
<groupId>com.arangodb</groupId>
3233
<artifactId>jackson-dataformat-velocypack</artifactId>
3334
<version>4.2.0</version>
35+
<scope>test</scope>
3436
</dependency>
3537
<dependency>
3638
<groupId>org.springframework.boot</groupId>

pom.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
<groupId>com.arangodb</groupId>
66
<artifactId>arangodb-spring-data</artifactId>
7-
<version>4.0.0</version>
7+
<version>4.1.0</version>
88
<inceptionYear>2017</inceptionYear>
99
<packaging>jar</packaging>
1010

1111
<parent>
1212
<groupId>org.springframework.data.build</groupId>
1313
<artifactId>spring-data-parent</artifactId>
14-
<version>3.0.8</version>
14+
<version>3.2.2</version>
1515
<relativePath/>
1616
</parent>
1717

@@ -55,9 +55,10 @@
5555

5656
<properties>
5757
<java-module-name>com.arangodb.springframework</java-module-name>
58-
<jaxb.version>2.3.1</jaxb.version> <!-- fix dependency convergence-->
5958
<arangodb.version>7.5.0</arangodb.version>
60-
<slf4j>2.0.7</slf4j>
59+
60+
<!-- enforce dependencies convergence -->
61+
<slf4j>2.0.11</slf4j>
6162
</properties>
6263

6364
<build>
@@ -271,6 +272,13 @@
271272
<groupId>com.tngtech.archunit</groupId>
272273
<artifactId>archunit-junit5</artifactId>
273274
<version>1.2.1</version>
275+
<scope>test</scope>
276+
</dependency>
277+
<dependency>
278+
<groupId>org.projectlombok</groupId>
279+
<artifactId>lombok</artifactId>
280+
<version>1.18.30</version>
281+
<scope>test</scope>
274282
</dependency>
275283
</dependencies>
276284

0 commit comments

Comments
 (0)
0