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
Copy file name to clipboardExpand all lines: README.md
+39-2Lines changed: 39 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,45 @@ This library simplifies color management while allowing developers to build beau
20
20
21
21
### Installation
22
22
23
-
1.**Add the JAR to your project**: (Instructions to add it as a dependency once you release it, or users can manually download it)
24
-
2.**Build the project**: Make sure your project is built with a compatible version of Java.
23
+
MatrixColorAPI is hosted on [Jitpack](https://jitpack.io), making it easy to integrate with your Maven or Gradle projects. Follow the steps below to add it to your project:
24
+
25
+
### Using Gradle
26
+
1.**Add the Jitpack repository** to your `build.gradle` file (inside `repositories` block):
27
+
```gradle
28
+
repositories {
29
+
maven { url 'https://jitpack.io' }
30
+
}
31
+
```
32
+
33
+
2.**Add the dependency** in your `dependencies` block:
0 commit comments