You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.lifecycle("Releasing with version: "+ project.version)
31
32
}
32
33
34
+
group ="io.reactivex.rxjava3"
35
+
version = project.properties["VERSION_NAME"]
36
+
description ="RxJava: Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM."
37
+
33
38
repositories {
34
39
mavenCentral()
35
40
}
@@ -52,6 +57,7 @@ java {
52
57
sourceCompatibility =JavaVersion.VERSION_1_8
53
58
targetCompatibility =JavaVersion.VERSION_1_8
54
59
}
60
+
ext.javaCompatibility =JavaVersion.VERSION_1_8
55
61
56
62
tasks.withType(JavaCompile) {
57
63
options.compilerArgs <<"-parameters"
@@ -86,17 +92,21 @@ animalsniffer {
86
92
}
87
93
88
94
jar {
95
+
// Cover for bnd still not supporting MR Jars: https://github.com/bndtools/bnd/issues/2227
96
+
bnd('-fixupmessages': '^Classes found in the wrong directory: \\\\{META-INF/versions/9/module-info\\\\.class=module-info}$')
89
97
bnd(
90
98
"Bundle-Name": "rxjava",
91
99
"Bundle-Vendor": "RxJava Contributors",
92
100
"Bundle-Description": "Reactive Extensions for the JVM - a library for composing asynchronous and event-based programs using observable sequences for the Java VM.",
0 commit comments