Skip to content

Commit

Permalink
Update README and next development version (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinayagarwal authored May 4, 2023
1 parent e2e6551 commit 1a9b4be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Simplifies working with JavaFX 11+ for gradle projects.

[![Gradle Plugin Portal](https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/org/openjfx/javafxplugin/org.openjfx.javafxplugin.gradle.plugin/maven-metadata.xml.svg?label=Gradle%20Plugin)](https://plugins.gradle.org/plugin/org.openjfx.javafxplugin)
[![Travis CI](https://api.travis-ci.com/openjfx/javafx-gradle-plugin.svg?branch=master)](https://travis-ci.com/openjfx/javafx-gradle-plugin)
![Github Actions](https://github.com/openjfx/javafx-gradle-plugin/actions/workflows/build.yml/badge.svg)
[![BSD-3 license](https://img.shields.io/badge/license-BSD--3-%230778B9.svg)](https://opensource.org/licenses/BSD-3-Clause)

## Getting started
Expand All @@ -17,13 +17,13 @@ To use the plugin, apply the following two steps:
**Groovy**

plugins {
id 'org.openjfx.javafxplugin' version '0.0.13'
id 'org.openjfx.javafxplugin' version '0.0.14'
}

**Kotlin**

plugins {
id("org.openjfx.javafxplugin") version "0.0.13"
id("org.openjfx.javafxplugin") version "0.0.14"
}

##### Alternatively, you can use the `buildscript` DSL:
Expand All @@ -37,7 +37,7 @@ To use the plugin, apply the following two steps:
}
}
dependencies {
classpath 'org.openjfx:javafx-plugin:0.0.13'
classpath 'org.openjfx:javafx-plugin:0.0.14'
}
}
apply plugin: 'org.openjfx.javafxplugin'
Expand All @@ -51,7 +51,7 @@ To use the plugin, apply the following two steps:
}
}
dependencies {
classpath("org.openjfx:javafx-plugin:0.0.13")
classpath("org.openjfx:javafx-plugin:0.0.14")
}
}
apply(plugin = "org.openjfx.javafxplugin")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildScan {
}

group 'org.openjfx'
version '0.0.14'
version '0.0.15-SNAPSHOT'

sourceCompatibility = 11
targetCompatibility = 11
Expand Down

0 comments on commit 1a9b4be

Please sign in to comment.