Skip to content

Commit

Permalink
Add correct import guides
Browse files Browse the repository at this point in the history
  • Loading branch information
QuickWrite committed Sep 17, 2023
1 parent 3d766f6 commit cf63e2a
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,41 +5,33 @@ A Java library that implements [Mozillas Fluent project](https://www.projectflue
### Maven
```xml
<repositories>
...
<repository>
<id>quickwrite-net-fluent4j</id>
<url>https://dl.cloudsmith.io/public/quickwrite-net/fluent4j/maven/</url>
</repository>
...
</repositories>
```
```xml
<dependencies>
...
<dependency>
<groupId>quickwrite-net</groupId>
<artifactId>fluent4j</artifactId>
<groupId>net.quickwrite</groupId>
<artifactId>builder</artifactId>
<version>{{package-version}}</version>
</dependency>
...
</dependencies>
```

### Gradle
```groovy
repositories {
...
maven {
url "https://dl.cloudsmith.io/public/quickwrite-net/fluent4j/maven/"
}
...
}
```
```groovy
dependencies {
...
implementation 'net.quickwrite:fluent4j:{{package-version}}'
...
implementation 'net.quickwrite:builder:{{package-version}}'
}
```

Expand Down

0 comments on commit cf63e2a

Please sign in to comment.