This repository was archived by the owner on Oct 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +39
-2
lines changed
Expand file tree Collapse file tree 2 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Java CI
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - master
7+ - release/velocypack-module-scala_2.11
8+ - release/velocypack-module-scala_2.12
9+ push :
10+ branches :
11+ - master
12+ - release/velocypack-module-scala_2.11
13+ - release/velocypack-module-scala_2.12
14+
15+ jobs :
16+
17+ test :
18+
19+ runs-on : ubuntu-latest
20+
21+ strategy :
22+ fail-fast : false
23+ matrix :
24+ java-version :
25+ - 8
26+ - 11
27+ - 14
28+
29+ steps :
30+ - uses : actions/checkout@v1
31+ - name : Set up JDK
32+ uses : actions/setup-java@v1
33+ with :
34+ java-version : ${{ matrix.java-version }}
35+ - name : Info
36+ run : mvn -version
37+ - name : Test
38+ run : mvn -e --no-transfer-progress test
Original file line number Diff line number Diff line change 2222
2323 <properties >
2424 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
25- <arangodb .velocypack.version>2.1.1</arangodb .velocypack.version>
2625 </properties >
2726
2827 <developers >
206205 <dependency >
207206 <groupId >com.arangodb</groupId >
208207 <artifactId >velocypack</artifactId >
209- <version >${arangodb.velocypack.version} </version >
208+ <version >2.4.0 </version >
210209 </dependency >
211210 <dependency >
212211 <groupId >org.scalatest</groupId >
You can’t perform that action at this time.
0 commit comments