Skip to content

Commit 50fbc77

Browse files
authored
Move from Bintray to JitPack (#20)
Bintray is being sunsetted in May 2021
1 parent 51f0ef6 commit 50fbc77

File tree

2 files changed

+12
-22
lines changed

2 files changed

+12
-22
lines changed

.circleci/config.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,6 @@ jobs:
3737
# Build the library and run tests
3838
- run: gradle build
3939

40-
deploy-to-bintray:
41-
<<: *setup-environment
42-
steps:
43-
- checkout
44-
- *load-cache
45-
- run: gradle dependencies
46-
- *save-cache
47-
# Deploy to bintray
48-
- run: gradle bintrayUpload
49-
5040
workflows:
5141
version: 2
5242
build-and-deploy:
@@ -55,12 +45,3 @@ workflows:
5545
filters:
5646
tags:
5747
only: /.*/
58-
- deploy-to-bintray:
59-
requires:
60-
- build
61-
filters:
62-
branches:
63-
ignore: /.*/
64-
tags:
65-
# Only tags beginning x.y.z
66-
only: /^\d+\.\d+\.\d+.*$/

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
![icon](artwork/RegexToolbox-icon-100.png)
2-
# RegexToolbox.kt [![CircleCI](https://circleci.com/gh/markwhitaker/RegexToolbox.kt.svg?style=shield)](https://circleci.com/gh/markwhitaker/RegexToolbox.kt) [![Download](https://api.bintray.com/packages/markwhitaker/Maven/regextoolbox-kotlin/images/download.svg) ](https://bintray.com/markwhitaker/Maven/regextoolbox-kotlin/_latestVersion)
2+
# RegexToolbox.kt [![CircleCI](https://circleci.com/gh/markwhitaker/RegexToolbox.kt.svg?style=shield)](https://circleci.com/gh/markwhitaker/RegexToolbox.kt) [![Download from JitPack](https://jitpack.io/v/markwhitaker/RegexToolbox.kt.svg)](https://jitpack.io/#markwhitaker/RegexToolbox.kt)
3+
34

45
Regular expression tools for Kotlin developers.
56

@@ -100,9 +101,17 @@ The old syntax is still supported if that's your preference (and for consistency
100101

101102
## Usage (Gradle)
102103

103-
Replace `x.y.z` with the latest version.
104+
RegexToolbox.kt is [hosted on JitPack](https://jitpack.io/#markwhitaker/RegexToolbox.kt).
105+
Replace `x.y.z` with the latest version (shown in the JitPack badge at the top of this page).
104106

105-
```implementation 'uk.co.mainwave.regextoolbox:regextoolbox-kotlin:x.y.z'```
107+
```
108+
repositories {
109+
...
110+
maven { url 'https://jitpack.io' }
111+
}
112+
113+
implementation 'com.github.markwhitaker:RegexToolbox.kt:x.y.z'
114+
```
106115

107116
---
108117
![icon](https://raw.githubusercontent.com/markwhitaker/RegexToolbox.Java/master/artwork/RegexToolbox-icon-32.png) **Java developer?** Check out the Java version of this library, [RegexToolbox.Java](https://github.com/markwhitaker/RegexToolbox.Java).

0 commit comments

Comments
 (0)