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
3.x: Move Gradle properties into gradle.properties file (ReactiveX#7260)
* Move Gradle properties into gradle.properties file
Moved version, group, and description into gradle.properties file.
Removed POM_ARTIFACT property as the 'name' property in the settings file
is used when building the POM. Removed 'release.scope' property as it
does not appear to be used. Removed VERSION_NAME property and references
to it, in favor of 'version' property.
* Replace POM_ARTIFACT_ID in gradle.properties
Added POM_ARTIFACT_ID=rxjava in gradle.properties file
logger.info("Releasing with version: {}", version)
32
+
logger.lifecycle("Releasing with version: "+ project.version)
33
33
}
34
34
35
-
group ="io.reactivex.rxjava3"
36
-
version = project.properties["VERSION_NAME"]
37
-
description ="RxJava: Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM."
Copy file name to clipboardExpand all lines: gradle.properties
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
release.scope=patch
2
-
VERSION_NAME=3.0.0-SNAPSHOT
1
+
group=io.reactivex.rxjava3
2
+
version=3.0.0-SNAPSHOT
3
+
description=RxJava: Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM.
0 commit comments