Skip to content

Commit 8e25831

Browse files
authored
Merge pull request #5 from swnck/dev
Update version to 1.0.0 in build files and README
2 parents d75f850 + 95990c7 commit 8e25831

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/gradle-publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
- name: Setup Gradle
2626
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582
2727

28+
- name: Ensure Gradle wrapper is executable
29+
run: chmod +x ./gradlew
30+
2831
- name: Build with Gradle
2932
run: ./gradlew build
3033

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ To use JxRequest in your project, add the following dependency to your `pom.xml`
4646
<dependency>
4747
<groupId>io.github.swnck</groupId>
4848
<artifactId>jxrequest</artifactId>
49-
<version>2.0.0</version>
49+
<version>1.0.0</version>
5050
</dependency>
5151
```
5252

5353
If you're using Gradle, add the following to your `build.gradle`:
5454

5555
```groovy
5656
dependencies {
57-
implementation 'io.github.swnck:jxrequest:2.0.0'
57+
implementation 'io.github.swnck:jxrequest:1.0.0'
5858
}
5959
```
6060
If you're using a different build tool, you can download the JAR file from the [releases page](https://github.com/swnck/JxRequest/releases) and add it to your classpath manually.

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "io.github.swnck"
8-
version = "2.0.0"
8+
version = "1.0.0"
99

1010
repositories {
1111
mavenCentral()

0 commit comments

Comments
 (0)