aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Zajc <marko@zajc.eu.org>2022-07-01 20:00:01 +0200
committerMarko Zajc <marko@zajc.eu.org>2022-07-01 20:00:01 +0200
commitb06ae868c38d35decfd9aaf3db5db91a845e6fad (patch)
tree42d77f9ea60569c9e54d2568308d553ba54836cf
parentfa80bed46d28f03a77c9c5dcfd9e6294f75615ee (diff)
Better installation instructionsv1.0
-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