Skip to content

Commit 1cf5c82

Browse files
committed
Convert orx-shader-phrases and orx-noise to MPP
1 parent 6a45db4 commit 1cf5c82

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+811
-739
lines changed

build.gradle

+138-115
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,37 @@ import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
22

33
buildscript {
44
repositories {
5-
jcenter()
5+
mavenCentral()
66
}
77
dependencies {
88
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"
1110
}
1211
}
12+
1313
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'
1536
}
1637

1738
def openrndrUseSnapshot = true
@@ -22,7 +43,9 @@ ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
2243

2344
project.ext {
2445
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"
2649
spekVersion = "2.0.15"
2750
libfreenectVersion = "0.5.7-1.5.5"
2851
librealsense2Version = "2.40.0-1.5.5"
@@ -32,6 +55,19 @@ project.ext {
3255
mklDnnVersion = "0.21.5-1.5.5"
3356
}
3457

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+
3571
switch (org.gradle.internal.os.OperatingSystem.current()) {
3672
case org.gradle.internal.os.OperatingSystem.WINDOWS:
3773
project.ext.openrndrOS = "windows"
@@ -52,61 +88,61 @@ dokka {
5288
sourceDirs = files(subprojects.collect { p -> new File(p.projectDir, "/src/main/kotlin") })
5389
}
5490

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+
//}
110146

111147
task buildMainReadme {
112148
doFirst {
@@ -250,76 +286,63 @@ task collectScreenshots {
250286
}
251287
}
252288

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'
255293
apply plugin: 'maven-publish'
256-
apply plugin: 'signing'
257294

258-
java {
259-
withJavadocJar()
260-
withSourcesJar()
261-
}
262295

263296
publishing {
264297
publications {
265-
mavenJava(MavenPublication) {
298+
maven(MavenPublication) {
266299
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-
}
297300
}
298301
}
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'
311324
}
312325
}
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
316334
}
317-
}
318335

319-
configure(subprojects) {
320336
tasks.withType(org.jetbrains.kotlin.gradle.tasks.AbstractKotlinCompile).all {
321337
kotlinOptions.freeCompilerArgs += ["-Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi"]
322338
}
339+
340+
341+
}
342+
343+
configure(allprojects.findAll { it.name != "openrndr-demos" }) {
344+
apply plugin: 'maven-publish'
345+
apply plugin: 'nebula.release'
323346
}
324347

325348

File renamed without changes.
File renamed without changes.

orx-jvm/orx-chataigne/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sourceSets {
88
}
99
}
1010
dependencies {
11-
api project(":orx-osc")
11+
api project(":orx-jvm:orx-osc")
1212

1313
implementation "com.google.code.gson:gson:$gsonVersion"
1414
demoImplementation("org.openrndr:openrndr-application:$openrndrVersion")

orx-jvm/orx-rabbit-control/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies {
1616
implementation "cc.rabbitcontrol:rcp:0.3.26"
1717
implementation "com.google.zxing:core:3.4.0"
1818
implementation "com.google.zxing:javase:3.4.0"
19-
implementation "io.ktor:ktor-server-netty:1.3.2"
19+
implementation "io.ktor:ktor-server-netty:1.3.1"
2020

2121
demoImplementation("org.openrndr:openrndr-extensions:$openrndrVersion")
2222
demoRuntimeOnly("org.openrndr:openrndr-gl3:$openrndrVersion")

orx-noise/build.gradle orx-noise/build.garble

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dependencies {
1515
demoImplementation(project(":orx-camera"))
1616
demoImplementation("org.openrndr:openrndr-application:$openrndrVersion")
1717
demoImplementation("org.openrndr:openrndr-extensions:$openrndrVersion")
18+
1819
demoRuntimeOnly("org.openrndr:openrndr-gl3:$openrndrVersion")
1920
demoRuntimeOnly("org.openrndr:openrndr-gl3-natives-$openrndrOS:$openrndrVersion")
2021
demoImplementation(sourceSets.getByName("main").output)

0 commit comments

Comments
 (0)