Skip to content

Commit 6b43a95

Browse files
author
Sharon Shabtai
authored
Update README.md (#589)
1 parent 00050fe commit 6b43a95

File tree

1 file changed

+16
-31
lines changed

1 file changed

+16
-31
lines changed

README.md

Lines changed: 16 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ The SDK can also be included directly into a Maven or Gradle build. There is als
3030
<project>
3131
...
3232
<repositories>
33-
<repository>
34-
<id>Spectra-Github</id>
35-
<url>http://dl.bintray.com/spectralogic/ds3</url>
36-
</repository>
37-
</repositories>
33+
<repository>
34+
<id>jitpack.io</id>
35+
<url>https://jitpack.io</url>
36+
</repository>
37+
</repositories>
3838
...
3939
<dependencies>
4040
...
4141
<dependency>
42-
<groupId>com.spectralogic.ds3</groupId>
43-
<artifactId>ds3-sdk</artifactId>
44-
<version>5.0.4</version>
42+
<groupId>com.github.spectralogic</groupId>
43+
<artifactId>ds3_java_sdk</artifactId>
44+
<version>Tag</version>
4545
<!-- <classifier>all</classifier> -->
46-
</dependency>
46+
</dependency>
4747
...
4848
</dependencies>
4949
</project>
@@ -54,19 +54,16 @@ To include the sdk into Gradle include the following in the `build.gradle` file:
5454

5555
```groovy
5656
57-
repositories {
58-
...
59-
maven {
60-
url 'http://dl.bintray.com/spectralogic/ds3'
61-
}
62-
...
57+
allprojects {
58+
repositories {
59+
...
60+
maven { url 'https://jitpack.io' }
61+
}
6362
}
6463
6564
dependencies {
66-
...
67-
compile 'com.spectralogic.ds3:ds3-sdk:5.0.4'
68-
// compile 'com.spectralogic.ds3:ds3-sdk:5.0.4:all'
69-
...
65+
implementation 'com.github.spectralogic:ds3_java_sdk:Tag'
66+
implementation 'com.github.spectralogic:ds3_java_sdk:Tag:all'
7067
}
7168
7269
```
@@ -94,15 +91,3 @@ bridges, please see [SLF4j.org](http://www.slf4j.org/manual.html).
9491
In addition to unit tests in the main `ds3-sdk` module, there are additional integration tests in the `ds3-integration` module. Please see the integration [README](ds3-sdk-integration/README.md) for details on running the tests. To just run the SDK's unit tests use:
9592

9693
./gradlew clean ds3-sdk:test
97-
98-
## Publishing
99-
100-
Before a user can publish the SDK they must first have [Bintray](https://bintray.com/spectralogic) API credentials and access to our organization to upload. Once a user has access they can set their credentials on the command line by issuing:
101-
102-
```shell
103-
104-
$ export BINTRAY_USER="userName"
105-
$ export BINTRAY_KEY="api_key"
106-
```
107-
108-
After the credentials have been set, to publish the SDK to [Bintray](https://bintray.com/spectralogic), issue the following from the command line run: `./gradlew clean bintrayUpload`

0 commit comments

Comments
 (0)