File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ plugins {
10
10
11
11
id ' me.champeau.jmh' version ' 0.7.2'
12
12
13
- id ' org.javamodularity.moduleplugin' version ' 1.8.15'
13
+ // This is https://github.com/java9-modularity/gradle-modules-plugin/pull/282
14
+ id ' com.github.koppor.gradle-modules-plugin' version ' jitpack-SNAPSHOT'
14
15
15
16
id ' org.openjfx.javafxplugin' version ' 0.1.0'
16
17
@@ -496,6 +497,8 @@ run {
496
497
' javafx.controls/javafx.scene.control.skin' : ' org.controlsfx.controls' ,
497
498
' javafx.graphics/javafx.scene' : ' org.controlsfx.controls'
498
499
]
500
+
501
+ createCommandLineArgumentFile = true
499
502
}
500
503
501
504
if (project. hasProperty(' component' )){
Original file line number Diff line number Diff line change
1
+ pluginManagement {
2
+ resolutionStrategy {
3
+ eachPlugin {
4
+ // Hint from https://github.com/jitpack/jitpack.io/issues/1459#issuecomment-1279851731
5
+ // Updated solution at https://github.com/foodiestudio/convention-plugins?tab=readme-ov-file#convention-plugins
6
+ if (requested. id. id. startsWith(" com.github.koppor" )) {
7
+ // This is https://github.com/java9-modularity/gradle-modules-plugin/pull/282
8
+ useModule(" com.github.koppor:gradle-modules-plugin:jitpack-SNAPSHOT" )
9
+ }
10
+ }
11
+ }
12
+
13
+ repositories {
14
+ maven {
15
+ url ' https://jitpack.io'
16
+ }
17
+ gradlePluginPortal()
18
+ }
19
+ }
20
+
1
21
plugins {
2
22
id(" org.gradle.toolchains.foojay-resolver-convention" ) version " 0.8.0"
3
23
}
You can’t perform that action at this time.
0 commit comments