aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md26
1 files changed, 20 insertions, 6 deletions
diff --git a/README.md b/README.md
index 7c07d3e..d213621 100644
--- a/README.md
+++ b/README.md
@@ -7,17 +7,31 @@ A small project providing extensions and additions to Java 8's built-in function
7Add the following to your pom.xml's dependencies: 7Add the following to your pom.xml's dependencies:
8 8
9```xml 9```xml
10<dependency> 10<dependencies>
11 <groupId>com.github.markozajc</groupId> 11 ...
12 <artifactId>extended-functions</artifactId> 12 <dependency>
13 <version>1.0</version> 13 <groupId>com.github.markozajc</groupId>
14</dependency> 14 <artifactId>extended-functions</artifactId>
15 <version>1.0</version>
16 </dependency>
17 ...
18</dependencies>
15``` 19```
16 20
17or your build.gradle: 21or your build.gradle:
18 22
19```groovy 23```groovy
20implementation group: 'com.github.markozajc', name: 'extended-functions', version: '1.0' 24repositories {
25 ...
26 mavenCentral()
27 ...
28}
29
30dependencies {
31 ...
32 api 'com.github.markozajc:extended-functions:1.0'
33 ...
34}
21``` 35```
22 36
23## usage 37## usage