Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 8e18275

Browse files
authored
chore: remove bintray publishing (#99)
1 parent a802a7d commit 8e18275

File tree

6 files changed

+13
-128
lines changed

6 files changed

+13
-128
lines changed

.github/workflows/release.yml

-47
This file was deleted.

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Cerberus Client
22

3-
[ ![Download](https://api.bintray.com/packages/nike/maven/cerberus-client/images/download.svg) ](https://bintray.com/nike/maven/cerberus-client/_latestVersion)
4-
[![][travis img]][travis]
53
[![codecov](https://codecov.io/gh/Nike-Inc/cerberus-java-client/branch/master/graph/badge.svg)](https://codecov.io/gh/Nike-Inc/cerberus-java-client)
64
[![][license img]][license]
75

@@ -10,6 +8,18 @@ This is a Java based client library for Cerberus that is built on top of Nike's
108
This library acts as a wrapper around the Nike developed Cerberus client by configuring the client to be Cerberus compatible.
119

1210
To learn more about Cerberus, please see the [Cerberus website](http://engineering.nike.com/cerberus/).
11+
12+
## Publishing Notice 3/17/2021
13+
As of spring 2021, JFrog has decided to sunset Bintray and JCenter.
14+
Due to this decision, we are pausing our open source publishing of the Cerberus Client indefinitely.
15+
However, we will still be updating the source code and making new GitHub releases.
16+
17+
In order to build the jar yourself, run this command:
18+
```bash
19+
./gradlew assemble
20+
```
21+
22+
The jar will be located in `./build/libs/`.
1323

1424
## Quickstart for Cerberus Java Client
1525

build.gradle

-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ buildscript {
2020

2121
apply plugin: 'java'
2222
apply plugin: 'maven'
23-
apply plugin: 'com.jfrog.bintray'
2423
apply plugin: 'maven-publish'
2524
apply plugin: "com.github.johnrengelman.shadow"
2625

@@ -38,6 +37,5 @@ tasks.jar.dependsOn copyProjectVersion
3837
apply from: file('gradle/dependencies.gradle')
3938
apply from: file('gradle/check.gradle')
4039
apply from: file('gradle/integration.gradle')
41-
apply from: file('gradle/bintray.gradle')
4240

4341
group = groupId

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
version=7.4.4
16+
version=7.4.5
1717
groupId=com.nike
1818
artifactId=cerberus-client

gradle/bintray.gradle

-75
This file was deleted.

gradle/buildscript.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ repositories {
2020

2121
dependencies {
2222
classpath "net.saliman:gradle-cobertura-plugin:2.6.1"
23-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
2423
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.6.3'
2524
classpath "com.github.jengelman.gradle.plugins:shadow:4.0.3"
2625
classpath 'org.owasp:dependency-check-gradle:5.3.2'

0 commit comments

Comments
 (0)