@@ -2,16 +2,37 @@ import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
2
2
3
3
buildscript {
4
4
repositories {
5
- jcenter ()
5
+ mavenCentral ()
6
6
}
7
7
dependencies {
8
8
classpath " org.jetbrains.dokka:dokka-gradle-plugin:0.9.17"
9
- classpath " com.netflix.nebula:nebula-release-plugin:15.1.0"
10
- classpath " com.github.ben-manes:gradle-versions-plugin:0.28.0"
9
+ classpath " com.netflix.nebula:nebula-release-plugin:15.3.1"
11
10
}
12
11
}
12
+
13
13
plugins {
14
- id ' org.jetbrains.kotlin.jvm' version ' 1.5.0'
14
+ // remember to update all the versions here when upgrading kotlin version
15
+ id ' org.jetbrains.kotlin.jvm' version ' 1.5.10' apply false
16
+ id ' org.jetbrains.kotlin.multiplatform' version ' 1.5.10' apply false
17
+ id ' org.jetbrains.kotlin.plugin.serialization' version ' 1.5.10' apply false
18
+ }
19
+
20
+ def multiplatformModules = [
21
+ " orx-noise" ,
22
+ " orx-shader-phrases"
23
+ ]
24
+
25
+ project. ext {
26
+ kotlinApiVersion = ' 1.4'
27
+ kotlinLanguageVersion = ' 1.4'
28
+ kotlinVersion = ' 1.5.10'
29
+ kotlinLoggingVersion = ' 2.0.8'
30
+ kotlinxSerializationVersion = ' 1.1.0'
31
+ spekVersion = ' 2.0.15'
32
+ kluentVersion = ' 1.65'
33
+ jsoupVersion = ' 1.13.1'
34
+ kotestVersion = ' 4.4.3'
35
+ junitJupiterVersion = ' 5.7.1'
15
36
}
16
37
17
38
def openrndrUseSnapshot = true
@@ -22,7 +43,9 @@ ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
22
43
23
44
project. ext {
24
45
openrndrVersion = openrndrUseSnapshot? " 0.5.1-SNAPSHOT" : " 0.4.0"
25
- kotlinVersion = " 1.5.0"
46
+ jvmTarget = " 1.8"
47
+ kotlinVersion = " 1.5.10"
48
+ kotlinApiVersion = " 1.4"
26
49
spekVersion = " 2.0.15"
27
50
libfreenectVersion = " 0.5.7-1.5.5"
28
51
librealsense2Version = " 2.40.0-1.5.5"
@@ -32,6 +55,19 @@ project.ext {
32
55
mklDnnVersion = " 0.21.5-1.5.5"
33
56
}
34
57
58
+ allprojects {
59
+ group ' org.openrndr'
60
+ repositories {
61
+ mavenCentral()
62
+ if (openrndrUseSnapshot) {
63
+ mavenLocal()
64
+ }
65
+ maven {
66
+ url = " https://maven.openrndr.org"
67
+ }
68
+ }
69
+ }
70
+
35
71
switch (org.gradle.internal.os.OperatingSystem . current()) {
36
72
case org.gradle.internal.os.OperatingSystem . WINDOWS :
37
73
project. ext. openrndrOS = " windows"
@@ -52,61 +88,61 @@ dokka {
52
88
sourceDirs = files(subprojects. collect { p -> new File (p. projectDir, " /src/main/kotlin" ) })
53
89
}
54
90
55
- allprojects {
56
- apply plugin : ' idea'
57
- apply plugin : ' java'
58
- apply plugin : ' kotlin'
59
- apply plugin : ' nebula.release'
60
-
61
- apply plugin : " com.github.ben-manes.versions"
62
-
63
- group ' org.openrndr.extra'
64
-
65
- repositories {
66
- if (openrndrUseSnapshot) {
67
- mavenLocal()
68
- }
69
-
70
- mavenCentral()
71
- jcenter()
72
- maven {
73
- url " https://dl.bintray.com/spekframework/spek"
74
- }
75
- }
76
-
77
- dependencies {
78
- implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion "
79
- implementation ' io.github.microutils:kotlin-logging-jvm:2.0.6'
80
- implementation " org.openrndr:openrndr-application:$openrndrVersion "
81
- implementation " org.openrndr:openrndr-shape:$openrndrVersion "
82
- implementation group : ' org.jetbrains.kotlinx' , name : ' kotlinx-coroutines-core' , version : ' 1.4.3'
83
- testImplementation " org.spekframework.spek2:spek-dsl-jvm:$spekVersion "
84
- testImplementation " org.amshove.kluent:kluent:1.65"
85
- testImplementation " org.jetbrains.kotlin:kotlin-test:$kotlinVersion "
86
- testRuntimeOnly " org.spekframework.spek2:spek-runner-junit5:$spekVersion "
87
- testRuntimeOnly " org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion "
88
- runtimeOnly " org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion "
89
- }
90
-
91
- java {
92
- sourceCompatibility = JavaVersion . VERSION_1_8
93
- targetCompatibility = JavaVersion . VERSION_1_8
94
- }
95
- javadoc {
96
- options. addBooleanOption ' Xdoclint:none' , true
97
- }
98
-
99
- test {
100
- useJUnitPlatform {
101
- includeEngines ' spek2'
102
- }
103
- }
104
- tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). all {
105
- kotlinOptions {
106
- jvmTarget = " 1.8"
107
- }
108
- }
109
- }
91
+ // allprojects {
92
+ // apply plugin: 'idea'
93
+ // apply plugin: 'java'
94
+ // apply plugin: 'kotlin'
95
+ // apply plugin: 'nebula.release'
96
+ //
97
+ // apply plugin: "com.github.ben-manes.versions"
98
+ //
99
+ // group 'org.openrndr.extra'
100
+ //
101
+ // repositories {
102
+ // if (openrndrUseSnapshot) {
103
+ // mavenLocal()
104
+ // }
105
+ //
106
+ // mavenCentral()
107
+ // jcenter()
108
+ // maven {
109
+ // url "https://dl.bintray.com/spekframework/spek"
110
+ // }
111
+ // }
112
+ //
113
+ // dependencies {
114
+ // implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
115
+ // implementation 'io.github.microutils:kotlin-logging-jvm:2.0.6'
116
+ // implementation "org.openrndr:openrndr-application:$openrndrVersion"
117
+ // implementation "org.openrndr:openrndr-shape:$openrndrVersion"
118
+ // implementation group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.4.3'
119
+ // testImplementation "org.spekframework.spek2:spek-dsl-jvm:$spekVersion"
120
+ // testImplementation "org.amshove.kluent:kluent:1.65"
121
+ // testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVersion"
122
+ // testRuntimeOnly "org.spekframework.spek2:spek-runner-junit5:$spekVersion"
123
+ // testRuntimeOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
124
+ // runtimeOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
125
+ // }
126
+ //
127
+ // java {
128
+ // sourceCompatibility = JavaVersion.VERSION_1_8
129
+ // targetCompatibility = JavaVersion.VERSION_1_8
130
+ // }
131
+ // javadoc {
132
+ // options.addBooleanOption 'Xdoclint:none', true
133
+ // }
134
+ //
135
+ // test {
136
+ // useJUnitPlatform {
137
+ // includeEngines 'spek2'
138
+ // }
139
+ // }
140
+ // tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
141
+ // kotlinOptions {
142
+ // jvmTarget = "1.8"
143
+ // }
144
+ // }
145
+ // }
110
146
111
147
task buildMainReadme {
112
148
doFirst {
@@ -250,76 +286,63 @@ task collectScreenshots {
250
286
}
251
287
}
252
288
253
- configure(allprojects. findAll { it. name != " openrndr-demos" }) {
254
- apply plugin : ' nebula.release'
289
+ configure(allprojects. findAll { ! multiplatformModules. contains(it. name) }) {
290
+ apply plugin : ' idea'
291
+ apply plugin : ' java'
292
+ apply plugin : ' kotlin'
255
293
apply plugin : ' maven-publish'
256
- apply plugin : ' signing'
257
294
258
- java {
259
- withJavadocJar()
260
- withSourcesJar()
261
- }
262
295
263
296
publishing {
264
297
publications {
265
- mavenJava (MavenPublication ) {
298
+ maven (MavenPublication ) {
266
299
from components. java
267
- groupId = " org.openrndr.extra"
268
- artifactId = " $project . name "
269
-
270
- description = " $project . name "
271
- pom {
272
- name = " $project . name "
273
- description = " $project . name "
274
- url = ' http://openrndr.org'
275
- developers {
276
- developer {
277
- id = ' edwinjakobs'
278
- name = ' Edwin Jakobs'
279
-
280
- }
281
- }
282
- license {
283
- licenses {
284
- license {
285
- name = ' BSD-2-Clause'
286
- url = ' https://github.com/openrndr/openrndr/blob/master/LICENSE'
287
- distribution = ' repo'
288
- }
289
- }
290
- }
291
- scm {
292
- connection
= " scm:git:[email protected] :openrndr/openrndr.git"
293
- developerConnection = " scm:git:ssh://github.com/openrndr/openrndr.git"
294
- url = " https://github.com/openrndr/openrndr"
295
- }
296
- }
297
300
}
298
301
}
299
- repositories {
300
- maven {
301
- credentials {
302
- username findProperty(" ossrhUsername" ) ?: System . getenv(" OSSRH_USERNAME" )
303
- password findProperty(" ossrhPassword" ) ?: System . getenv(" OSSRH_PASSWORD" )
304
- }
305
- if (! isReleaseVersion) {
306
- url " https://s01.oss.sonatype.org/content/repositories/snapshots"
307
- } else {
308
- url " https://s01.oss.sonatype.org/service/local/staging/deploy/maven2"
309
- }
310
- }
302
+ }
303
+
304
+ dependencies {
305
+ // Note: kotlin-logging and kotlinx-coroutines-core are loaded
306
+ // too early and their versions cannot be parametrized
307
+ implementation ' io.github.microutils:kotlin-logging:2.0.6'
308
+ implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3'
309
+
310
+ implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion "
311
+ implementation " org.openrndr:openrndr-application:$openrndrVersion "
312
+ implementation " org.openrndr:openrndr-math:$openrndrVersion "
313
+
314
+ testImplementation " org.spekframework.spek2:spek-dsl-jvm:$spekVersion "
315
+ testImplementation " org.amshove.kluent:kluent:$kluentVersion "
316
+ testImplementation " org.jetbrains.kotlin:kotlin-test:$kotlinVersion "
317
+ testRuntimeOnly " org.spekframework.spek2:spek-runner-junit5:$spekVersion "
318
+ testRuntimeOnly " org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion "
319
+ }
320
+
321
+ test {
322
+ useJUnitPlatform {
323
+ includeEngines ' spek2'
311
324
}
312
325
}
313
- signing {
314
- required { isReleaseVersion && gradle. taskGraph. hasTask(" publish" ) }
315
- sign publishing. publications. mavenJava
326
+
327
+ java {
328
+ sourceCompatibility = JavaVersion . VERSION_1_8
329
+ targetCompatibility = JavaVersion . VERSION_1_8
330
+ }
331
+
332
+ javadoc {
333
+ options. addBooleanOption ' Xdoclint:none' , true
316
334
}
317
- }
318
335
319
- configure(subprojects) {
320
336
tasks. withType(org.jetbrains.kotlin.gradle.tasks.AbstractKotlinCompile ). all {
321
337
kotlinOptions. freeCompilerArgs + = [" -Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi" ]
322
338
}
339
+
340
+
341
+ }
342
+
343
+ configure(allprojects. findAll { it. name != " openrndr-demos" }) {
344
+ apply plugin : ' maven-publish'
345
+ apply plugin : ' nebula.release'
323
346
}
324
347
325
348
0 commit comments