File tree Expand file tree Collapse file tree 21 files changed +136
-117
lines changed
main/java/org/dizitart/no2/rocksdb/formatter
test/java/org/dizitart/no2
main/java/org/dizitart/no2
test/java/org/dizitart/no2/collection Expand file tree Collapse file tree 21 files changed +136
-117
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,33 @@ updates:
33 - package-ecosystem : maven
44 directory : " /"
55 schedule :
6- interval : daily
6+ interval : weekly
77 target-branch : main
8+ ignore :
9+ # Ignore minor version updates for dependencies with group ID "com.google.errorprone"
10+ - dependency-name : " com.google.errorprone:*"
11+ update-types : [ "version-update:semver-minor" ]
12+ groups :
13+ security :
14+ # Group security updates into a single pull request
15+ applies-to : security-updates
16+ patterns :
17+ - " *"
18+ production-dependencies :
19+ # Group version updates for "production" dependencies into a single pull request
20+ applies-to : version-updates
21+ dependency-type : production
22+ patterns :
23+ - " *"
24+ development-dependencies :
25+ # Group version updates for "development" dependencies into a single pull request
26+ applies-to : version-updates
27+ dependency-type : development
28+ patterns :
29+ - " *"
830
931 - package-ecosystem : " github-actions"
1032 directory : " /"
1133 schedule :
12- interval : " daily "
34+ interval : " weekly "
1335 target-branch : main
Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ jobs:
3939 cache : ' maven'
4040
4141 - name : Build with Maven
42- run : mvn -B -ff -ntp clean install -Dgpg.skip=true
42+ run : mvn -B -ff -ntp clean install
4343
4444 - name : Publish Code Coverage
4545 if : github.ref == 'refs/heads/main' && matrix.java == '11'
46- uses : codecov/codecov-action@v4
46+ uses : codecov/codecov-action@v5
4747 with :
4848 token : ${{ secrets.CODECOV_TOKEN }}
4949 flags : unittests
7070 cache : ' maven'
7171
7272 - name : Build with Maven
73- run : mvn -B -ff -ntp clean install -Dgpg.skip=true
73+ run : mvn -B -ff -ntp clean install
7474
7575 build_windows :
7676 runs-on : windows-latest
9393 cache : ' maven'
9494
9595 - name : Build with Maven
96- run : mvn -B -ff -ntp clean install --% -Dgpg.skip=true
96+ run : mvn -B -ff -ntp clean install
9797
9898 verify-native :
9999 name : Verify GraalVM ${{ matrix.java }} compatibility on ${{ matrix.os }}
@@ -105,13 +105,13 @@ jobs:
105105 steps :
106106 - uses : actions/checkout@v4
107107
108- -
uses :
graalvm/[email protected] .3 108+ -
uses :
graalvm/[email protected] .8 109109 with :
110110 java-version : ${{ matrix.java }}
111111 distribution : ' graalvm-community'
112112
113113 - name : Install nitrite
114- run : mvn -B -ff -ntp clean install "-Dgpg.skip=true" -DskipTests
114+ run : mvn -B -ff -ntp clean install -DskipTests
115115
116116 - name : Run native tests
117117 working-directory : ./nitrite-native-tests
Original file line number Diff line number Diff line change 5151 PGP_KEY_PASSWORD : ${{ secrets.PGP_KEY_PASSWORD }}
5252
5353 - name : Deploy Release
54- run : mvn -B -ff -ntp deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
54+ run : mvn -P deploy - B -ff -ntp deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
5555 shell : bash
5656 env :
5757 MAVEN_USERNAME : ${{ secrets.OSSRH_USER }}
Original file line number Diff line number Diff line change 5151 PGP_KEY_PASSWORD : ${{ secrets.PGP_KEY_PASSWORD }}
5252
5353 - name : Deploy Snapshot
54- run : mvn -B -ff -ntp deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
54+ run : mvn -P deploy - B -ff -ntp deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
5555 shell : bash
5656 env :
5757 MAVEN_USERNAME : ${{ secrets.OSSRH_USER }}
Original file line number Diff line number Diff line change 6767 <snapshots ><enabled >true</enabled ></snapshots >
6868 </repository >
6969 </repositories >
70-
71- <build >
72- <plugins >
73- <plugin >
74- <groupId >org.apache.maven.plugins</groupId >
75- <artifactId >maven-gpg-plugin</artifactId >
76- </plugin >
77- <plugin >
78- <groupId >org.sonatype.plugins</groupId >
79- <artifactId >nexus-staging-maven-plugin</artifactId >
80- </plugin >
81- </plugins >
82- </build >
8370</project >
Original file line number Diff line number Diff line change 132132 <groupId >org.apache.maven.plugins</groupId >
133133 <artifactId >maven-source-plugin</artifactId >
134134 </plugin >
135- <plugin >
136- <groupId >org.apache.maven.plugins</groupId >
137- <artifactId >maven-gpg-plugin</artifactId >
138- </plugin >
139135 <plugin >
140136 <groupId >org.codehaus.mojo</groupId >
141137 <artifactId >animal-sniffer-maven-plugin</artifactId >
142138 </plugin >
143- <plugin >
144- <groupId >org.sonatype.plugins</groupId >
145- <artifactId >nexus-staging-maven-plugin</artifactId >
146- </plugin >
147139 <plugin >
148140 <groupId >org.apache.maven.plugins</groupId >
149141 <artifactId >maven-jar-plugin</artifactId >
Original file line number Diff line number Diff line change 174174 <groupId >org.apache.maven.plugins</groupId >
175175 <artifactId >maven-source-plugin</artifactId >
176176 </plugin >
177- <plugin >
178- <groupId >org.apache.maven.plugins</groupId >
179- <artifactId >maven-gpg-plugin</artifactId >
180- </plugin >
181- <plugin >
182- <groupId >org.sonatype.plugins</groupId >
183- <artifactId >nexus-staging-maven-plugin</artifactId >
184- </plugin >
185177 <plugin >
186178 <groupId >org.apache.maven.plugins</groupId >
187179 <artifactId >maven-jar-plugin</artifactId >
Original file line number Diff line number Diff line change 2020 <maven .compiler.target>17</maven .compiler.target>
2121 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
2222
23- <assertj .version>3.26 .3</assertj .version>
24- <junit .version>5.11.0 </junit .version>
25- <native-build-tools-plugin .version>0.10.2 </native-build-tools-plugin .version>
23+ <assertj .version>3.27 .3</assertj .version>
24+ <junit .version>5.11.4 </junit .version>
25+ <native-build-tools-plugin .version>0.10.4 </native-build-tools-plugin .version>
2626 </properties >
2727
2828 <dependencyManagement >
Original file line number Diff line number Diff line change 172172 <groupId >org.apache.maven.plugins</groupId >
173173 <artifactId >maven-source-plugin</artifactId >
174174 </plugin >
175- <plugin >
176- <groupId >org.apache.maven.plugins</groupId >
177- <artifactId >maven-gpg-plugin</artifactId >
178- </plugin >
179- <plugin >
180- <groupId >org.sonatype.plugins</groupId >
181- <artifactId >nexus-staging-maven-plugin</artifactId >
182- </plugin >
183175 <plugin >
184176 <groupId >org.apache.maven.plugins</groupId >
185177 <artifactId >maven-jar-plugin</artifactId >
Original file line number Diff line number Diff line change 99import com .esotericsoftware .kryo .kryo5 .serializers .MapSerializer ;
1010import org .dizitart .no2 .collection .Document ;
1111import org .dizitart .no2 .collection .NitriteId ;
12- import org .dizitart .no2 .common .meta . Attributes ;
12+ import org .dizitart .no2 .common .DBValue ;
1313import org .dizitart .no2 .common .Fields ;
14+ import org .dizitart .no2 .common .meta .Attributes ;
1415import org .dizitart .no2 .common .tuples .Pair ;
15- import org .dizitart .no2 .common .DBValue ;
1616import org .dizitart .no2 .common .util .SpatialKey ;
1717import org .dizitart .no2 .index .BoundingBox ;
1818import org .dizitart .no2 .index .IndexDescriptor ;
You can’t perform that action at this time.
0 commit comments