private String getVersionOverride()

in build-tools/src/main/java/co/elastic/otel/android/compilation/tools/publishing/ApmPublisherRootPlugin.java [89:102]


    private String getVersionOverride(Project project) {
        if (!project.hasProperty(PROPERTY_VERSION_OVERRIDE)) {
            return null;
        }
        String property = (String) project.property(PROPERTY_VERSION_OVERRIDE);
        if (property == null) {
            return null;
        }
        property = property.trim();
        if (property.isEmpty()) {
            return null;
        }
        return property;
    }