File tree Expand file tree Collapse file tree 7 files changed +23
-21
lines changed Expand file tree Collapse file tree 7 files changed +23
-21
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,15 @@ language: java
3
3
matrix :
4
4
include :
5
5
- os : linux
6
- dist : trusty
7
- jdk : oraclejdk8
6
+ dist : bionic
7
+ jdk : oraclejdk11
8
8
addons :
9
9
apt :
10
10
packages :
11
11
- libgtk-3-dev
12
12
- os : osx
13
- osx_image : xcode10.2
13
+ osx_image : xcode11
14
+ jdk : oraclejdk11
14
15
15
16
script :
16
17
- ./gradlew -PpublishMode build
Original file line number Diff line number Diff line change
1
+ # 0.1.6
2
+ > Published 18 Nov 2019
3
+
4
+ * Compatible with Kotlin 1.3.60
5
+ * On macOS requires Xcode 11 or higher
6
+
7
+
1
8
# 0.1.5
2
9
> Published 22 Aug 2019
3
10
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ plugins {
9
9
10
10
allprojects {
11
11
repositories {
12
- if (Kotlin .repo.isNotEmpty()) maven { url = uri(Kotlin .repo) }
13
12
mavenCentral()
13
+ maven { url = uri(" https://dl.bintray.com/kotlin/kotlin-dev" ) }
14
14
}
15
15
}
16
16
Original file line number Diff line number Diff line change @@ -11,8 +11,7 @@ object Publish {
11
11
}
12
12
13
13
object Kotlin {
14
- const val version = " 1.3.50"
15
- const val repo = " https://dl.bintray.com/kotlin/kotlin-dev"
14
+ const val version = " 1.3.60"
16
15
}
17
16
18
17
object Libui {
@@ -25,5 +24,5 @@ object Dokka {
25
24
}
26
25
27
26
object Download {
28
- const val version = " 3.4.3 "
27
+ const val version = " 4.0.1 "
29
28
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.1 -all.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.4 -all.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -63,20 +63,16 @@ kotlin {
63
63
}
64
64
}
65
65
66
- tasks.withType<CInteropProcess >().all {
66
+ tasks.withType<CInteropProcess > {
67
67
dependsOn(unpackArchive)
68
68
}
69
69
70
70
publishing {
71
- publications.withType<MavenPublication >().all {
71
+ publications.withType<MavenPublication > {
72
72
pom {
73
- withXml {
74
- asNode().apply {
75
- appendNode(" name" , " libui" )
76
- appendNode(" description" , " Kotlin/Native interop to libui: a portable GUI library" )
77
- appendNode(" url" , Publish .pom.url)
78
- }
79
- }
73
+ name.set(" libui" )
74
+ description.set(" Kotlin/Native interop to libui: a portable GUI library" )
75
+ url.set(Publish .pom.url)
80
76
licenses {
81
77
license {
82
78
name.set(" MIT License" )
@@ -104,8 +100,7 @@ publishing {
104
100
}
105
101
106
102
repositories {
107
- maven {
108
- url = uri(" https://api.bintray.com/maven/${Publish .user} /$BINTRAY_REPO /libui/;publish=0;override=1" )
103
+ maven(" https://api.bintray.com/maven/${Publish .user} /$BINTRAY_REPO /libui/;publish=0;override=1" ) {
109
104
credentials {
110
105
username = Publish .user
111
106
password = System .getenv(" BINTRAY_API_KEY" )
@@ -114,7 +109,7 @@ publishing {
114
109
}
115
110
}
116
111
117
- tasks.withType<AbstractPublishToMaven >().all {
112
+ tasks.withType<AbstractPublishToMaven > {
118
113
onlyIf { ! name.startsWith(" publishWindows" ) || os.isWindows }
119
114
onlyIf { ! name.startsWith(" publishMacosx" ) || os.isMacOsX }
120
115
onlyIf { ! name.startsWith(" publishLinux" ) || os.isLinux }
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ pluginManagement {
11
11
}
12
12
13
13
repositories {
14
- if (Kotlin .repo.isNotEmpty()) maven { url = uri(Kotlin .repo) }
15
14
mavenCentral()
16
15
maven { url = uri(" https://plugins.gradle.org/m2/" ) }
16
+ maven { url = uri(" https://dl.bintray.com/kotlin/kotlin-dev" ) }
17
17
}
18
18
}
19
19
You can’t perform that action at this time.
0 commit comments