Posts

Showing posts from January 5, 2019

JXBrowser ClassNotFoundException

Image
1 I've problem with JXBrowser license file. I've followed https://jxbrowser-support.teamdev.com/docs/quickstart/gradle-config.html official guide to use with Gradle and this is my current build.Gradle Build seem normal and no any error. plugins { id 'java' } sourceSets { main { java { srcDir 'src' } } test { java { srcDir 'test' } } } jar { manifest { attributes 'Main-Class': 'main.Main' } } version '1.0' sourceCompatibility = 1.8 repositories { mavenCentral() maven { url = 'http://maven.teamdev.com/repository/products' } } ext { jxBrowserVersion = '6.22' } dependencies { compile group: 'org.postgre