Skip to content

Commit efc186b

Browse files
Update plugin version to 1.1.0 (#45)
... and do not use upper case letters in the project name.
1 parent e91c127 commit efc186b

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ A Gradle plug-in that provides convenience methods for adding JxBrowser dependen
88
import com.teamdev.jxbrowser.gradle.Repository
99

1010
plugins {
11-
id("com.teamdev.jxbrowser") version "1.0.2"
11+
id("com.teamdev.jxbrowser") version "1.1.0"
1212
}
1313

1414
jxbrowser {
1515
// The JxBrowser version. A mandatory field.
1616
// Obtain the latest release version number at https://teamdev.com/jxbrowser/.
17-
version = "7.38.0"
17+
version = "7.39.1"
1818

1919
// The location of JxBrowser repository to use. It's either North America or Europe.
2020
// If not specified, the location is set to North America.

build.gradle.kts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1919
*/
2020

21-
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
21+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2222

2323
object BuildSettings {
2424
const val GROUP = "com.teamdev.jxbrowser"
25-
const val VERSION = "1.0.2"
26-
const val JXBROWSER_VERSION = "7.38.0"
25+
const val VERSION = "1.1.0"
26+
const val JXBROWSER_VERSION = "7.39.1"
2727
val javaVersion = JavaVersion.VERSION_1_8
2828
}
2929

@@ -70,6 +70,7 @@ java {
7070
}
7171

7272
kotlin {
73+
compilerOptions.jvmTarget = JvmTarget.JVM_1_8
7374
explicitApi()
7475
}
7576

@@ -99,10 +100,6 @@ publishing {
99100
}
100101
}
101102

102-
tasks.withType<KotlinCompile> {
103-
kotlinOptions.jvmTarget = BuildSettings.javaVersion.toString()
104-
}
105-
106103
tasks.withType<Test> {
107104
useJUnitPlatform()
108105
systemProperty("JXBROWSER_VERSION", BuildSettings.JXBROWSER_VERSION)

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1919
*/
2020

21-
rootProject.name = "JxBrowser-Gradle-Plugin"
21+
rootProject.name = "jxbrowser-gradle-plugin"

0 commit comments

Comments
 (0)