Skip to content

Commit b3dda59

Browse files
committed
[Build] Fix bintray task
1 parent a1b151e commit b3dda59

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
plugins {
2+
id 'com.jfrog.bintray' apply false
3+
}
4+
15
allprojects {
26
group 'imgui-java'
37
version property('version')

imgui-app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
id 'io.freefair.lombok' version '5.3.0'
44
id 'checkstyle'
5-
id 'com.jfrog.bintray' version '1.8.4'
5+
id 'com.jfrog.bintray'
66
id 'maven-publish'
77
}
88

imgui-binding-natives/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'com.jfrog.bintray' version '1.8.4'
3+
id 'com.jfrog.bintray'
44
id 'maven-publish'
55
}
66

imgui-binding/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import imgui.generate.GenerateLibs
33
plugins {
44
id 'java'
55
id 'checkstyle'
6-
id 'com.jfrog.bintray' version '1.8.4'
6+
id 'com.jfrog.bintray'
77
id 'maven-publish'
88
}
99

imgui-lwjgl3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.gradle.internal.os.OperatingSystem
33
plugins {
44
id 'java'
55
id 'checkstyle'
6-
id 'com.jfrog.bintray' version '1.8.4'
6+
id 'com.jfrog.bintray'
77
id 'maven-publish'
88
}
99

settings.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
pluginManagement {
2+
plugins {
3+
id 'com.jfrog.bintray' version '1.8.5'
4+
}
5+
}
6+
17
rootProject.name = 'imgui-java'
28
include 'imgui-binding'
39
include 'imgui-lwjgl3'
410
include 'imgui-binding-natives'
511
include 'imgui-app'
612
include 'example'
7-

0 commit comments

Comments
 (0)