File tree Expand file tree Collapse file tree 4 files changed +34
-4
lines changed Expand file tree Collapse file tree 4 files changed +34
-4
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,16 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.0.1] - 2022-09-11
11
+
12
+ * Improve how to use the library
13
+
10
14
## [ 1.0.0] - 2022-09-03
11
15
12
16
* Release the first version after the migration
13
17
14
- [ Unreleased ] : https://github.com/Drjacky/anticaptcha-kotlin/compare/v1.0.0...HEAD
18
+ [ Unreleased ] : https://github.com/Drjacky/anticaptcha-kotlin/compare/v1.0.1...HEAD
19
+
20
+ [ 1.0.1 ] : https://github.com/Drjacky/anticaptcha-kotlin/compare/v1.0.0...v1.0.1
15
21
16
22
[ 1.0.0 ] : https://github.com/Drjacky/anticaptcha-kotlin/tree/v1.0.0
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ Access to Anti Captcha API v2 via Kotlin
8
8
## How to use 👣
9
9
10
10
- Add ` https://jitpack.io ` to your ` build.gradle `
11
+ - ` implementation 'com.github.Drjacky:anticaptcha-kotlin:$libVersion' `
12
+ - Where ` $libVersion `
13
+ = [ ![ libVersion] ( https://img.shields.io/github/release/Drjacky/anticaptcha-kotlin/all.svg?style=flat-square )] ( https://github.com/Drjacky/anticaptcha-kotlin/releases )
11
14
- Create an account [ here] ( http://getcaptchasolution.com/kt1yavajcg )
12
15
- Set the client key by ` setClientKey `
13
16
- Run the main function in the Main class
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ plugins {
4
4
kotlin(" jvm" ) version " 1.7.10"
5
5
}
6
6
7
- group = " org.example "
8
- version = " 1.0-SNAPSHOT "
7
+ group = " app.web.drjacky "
8
+ version = " 1.0.1 "
9
9
10
10
repositories {
11
11
mavenCentral()
@@ -32,4 +32,14 @@ tasks.test {
32
32
33
33
tasks.withType<KotlinCompile > {
34
34
kotlinOptions.jvmTarget = " 1.8"
35
- }
35
+ }
36
+
37
+ allprojects {
38
+ ext {
39
+ set(" PUBLISH_GROUP_ID" , " com.github.Drjacky" )
40
+ set(" PUBLISH_VERSION" , version)
41
+ set(" PUBLISH_ARTIFACT_ID" , " anticaptcha-kotlin" )
42
+ }
43
+ }
44
+
45
+ apply (from = " ${rootProject.projectDir} /scripts/publish-mavencentral.gradle" )
Original file line number Diff line number Diff line change
1
+ apply plugin : ' maven-publish'
2
+
3
+ publishing {
4
+ publications {
5
+ release(MavenPublication ) {
6
+ groupId PUBLISH_GROUP_ID
7
+ artifactId PUBLISH_ARTIFACT_ID
8
+ version PUBLISH_VERSION
9
+ }
10
+ }
11
+ }
You can’t perform that action at this time.
0 commit comments