Skip to content

Commit

Permalink
Updated MavenGradle import
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankitanovski committed May 2, 2019
1 parent ee0a081 commit 399aaa3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ You can import the library with maven in your `pom.xml` file:
```xml
<dependency>
<groupId>com.github.fair-search</groupId>
<artifactId>fairsearch-deltr</artifactId>
<version>1.0.0</version>
<artifactId>fairsearchdeltr-java</artifactId>
<version>1.0.1</version>
</dependency>
```
or, if you are using Gradle, in your `build.gradle` file add this in the `dependencies` block:
```gradle
compile "com.github.fair-search:fairsearch-deltr:1.0.0"
compile "com.github.fair-search:fairsearchdeltr-java:1.0.1"
```

And, that's it!
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
}

group 'com.github.fair-search'
version '1.0.0'
version '1.0.1'

apply plugin: 'java'
apply plugin: 'maven-publish'
Expand Down Expand Up @@ -58,8 +58,8 @@ publishing {
publications {
mavenJava(MavenPublication) {
groupId 'com.github.fair-search'
artifactId 'fairsearchdeltr-java'
version '1.0.0'
artifactId 'fairsearch-deltr'
version '1.0.1'
from components.java
}
}
Expand Down

0 comments on commit 399aaa3

Please sign in to comment.