File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed
Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ A Gradle plug-in that provides convenience methods for adding JxBrowser dependen
88import com.teamdev.jxbrowser.gradle.Repository
99
1010plugins {
11- id(" com.teamdev.jxbrowser" ) version " 1.0.2 "
11+ id(" com.teamdev.jxbrowser" ) version " 1.1.0 "
1212}
1313
1414jxbrowser {
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.
Original file line number Diff line number Diff line change 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
2323object 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
7070}
7171
7272kotlin {
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-
106103tasks.withType<Test > {
107104 useJUnitPlatform()
108105 systemProperty(" JXBROWSER_VERSION" , BuildSettings .JXBROWSER_VERSION )
Original file line number Diff line number Diff line change 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 "
You can’t perform that action at this time.
0 commit comments