Как мне настроить этот плагин? Я попробовал это:
<plugin>
<groupId>com.gluonhq</groupId>
<artifactId>charm</artifactId>
<version>6.0.3</version>
<configuration>
<mainClass>hello.HelloWorld</mainClass>
</configuration>
</plugin>
Но плагин подчеркнут красным и не может использоваться.
Приветствует MatsG23
PS Я хочу перенести этот автоматически созданный Gradle на Maven, потому что я могу лучше с этим справляться - хочу добавить Packager для Windows
buildscript {
repositories {
jcenter()
google()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.17'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'mats.app.NIMSpiel.Main'
dependencies {
compile 'com.gluonhq:charm:5.0.2'
}
jfxmobile {
downConfig {
version = '3.8.6'
// Do not edit the line below. Use Gluon Mobile Settings in your project context menu instead
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}
android {
manifest = 'src/android/AndroidManifest.xml'
compileSdkVersion = '29'
}
}