You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library provides Java bindings for the [H3 Core Library](https://github.com/uber/h3). For API reference, please see the [H3 Documentation](https://h3geo.org/).
12
12
@@ -62,22 +62,10 @@ You may be able to build H3-Java locally if you need to use an operating system
62
62
63
63
# Development
64
64
65
-
Building the library requires a JDK, Maven, CMake, and a C compiler. To install to your local Maven cache, run:
65
+
Building the library requires a JDK, Gradle, CMake, and a C compiler. To build:
66
66
67
67
```sh
68
-
mvn install
69
-
```
70
-
71
-
To build the library, run:
72
-
73
-
```sh
74
-
mvn package
75
-
```
76
-
77
-
To format source code as required by CI, run:
78
-
79
-
```sh
80
-
mvn com.spotify.fmt:fmt-maven-plugin:format
68
+
./gradlew assemble test -Ph3UseDocker=false
81
69
```
82
70
83
71
Additional information on how the build process works is available in the [build process documentaiton](docs/library-build.md).
@@ -86,7 +74,7 @@ Additional information on how the build process works is available in the [build
0 commit comments