We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dccc80 commit 2d25615Copy full SHA for 2d25615
1 file changed
README.md
@@ -19,6 +19,8 @@ Both implementations are designed to be immutable and provide type-safe access t
19
20
## Installation
21
22
+### Maven
23
+
24
Add the following dependency to your `pom.xml`:
25
26
```xml
@@ -29,6 +31,24 @@ Add the following dependency to your `pom.xml`:
29
31
</dependency>
30
32
```
33
34
+### Gradle
35
36
+Add the following dependency to your `build.gradle`:
37
38
+```gradle
39
+dependencies {
40
+ implementation 'com.appxiom.ax:ax-tuple:1.0.8'
41
+}
42
+```
43
44
+Or in `build.gradle.kts`:
45
46
+```kotlin
47
48
+ implementation("com.appxiom.ax:ax-tuple:1.0.8")
49
50
51
52
## Usage
53
54
### Using `Tuple`
0 commit comments