Skip to content

Commit 37e9eb7

Browse files
Update the plugin version
1 parent a88b1d2 commit 37e9eb7

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# JxBrowser-Gradle-Plugin
1+
# JxBrowser Gradle Plugin
22

3-
This is a Gradle plug-in that provides convenience methods for adding JxBrowser dependencies into a project.
3+
A Gradle plug-in that provides convenience methods for adding JxBrowser dependencies into a project.
44

55
## Usage
66

77
```kotlin
88
plugins {
9-
id("com.teamdev.jxbrowser") version "0.0.4"
9+
id("com.teamdev.jxbrowser") version "0.0.5"
1010
}
1111

1212
jxbrowser {
1313
// The JxBrowser version. A mandatory field.
14-
version = "7.35.1"
14+
version = "7.35.2"
1515

1616
// The location of JxBrowser repository to use. It's either North America or Europe.
1717
// By default, it's North America.
@@ -35,7 +35,7 @@ dependencies {
3535

3636
// Detects the current platform and adds the corresponding Chromium binaries.
3737
implementation(jxbrowser.currentPlatform())
38-
38+
3939
// Adds dependencies with binaries for all supported platforms.
4040
implementation(jxbrowser.crossPlatform())
4141

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ plugins {
2525
}
2626

2727
group = "com.teamdev.jxbrowser"
28-
version = "0.0.4"
28+
version = "0.0.5"
2929

3030
gradlePlugin {
31-
3231
plugins {
3332
website = "https://github.com/TeamDev-IP/JxBrowser-Gradle-Plugin"
3433
vcsUrl = "https://github.com/TeamDev-IP/JxBrowser-Gradle-Plugin"

src/main/java/com/teamdev/jxbrowser/gradle/DepsConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*
4141
* jxbrowser {
4242
* // JxBrowser version.
43-
* version = "7.35.1"
43+
* version = "7.35.2"
4444
*
4545
* // Use JxBrowser repository at specific location. It's North America by default.
4646
* repository = Repository.NORTH_AMERICA

src/main/java/com/teamdev/jxbrowser/gradle/DepsPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* }
3535
*
3636
* jxbrowser {
37-
* version = "7.35.1"
37+
* version = "7.35.2"
3838
*
3939
* // Use JxBrowser repository at specific location. It's North America by default.
4040
* repository = Repository.NORTH_AMERICA

0 commit comments

Comments
 (0)