From 6f4b8c707b1b64eb029f72fe183a742c24b20ad8 Mon Sep 17 00:00:00 2001 From: Markus Date: Mon, 10 Feb 2020 17:36:34 +0100 Subject: [PATCH] https --- CONTRIBUTING.md | 2 +- EventBus/build.gradle | 2 +- EventBusAnnotationProcessor/build.gradle | 2 +- README.md | 18 +++++++++--------- gradle/publish.gradle | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b656e1a5..1402e6bb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ Before you create an Issue... There are better Places for Support ----------------------------------- We want your question to be answered, so it is important that you ask at the right place. Be aware that an issue tracker is not the best place to ask for support. An issue tracker is used to track issues (bugs or feature requests). -Instead, please use [stackoverflow.com](http://stackoverflow.com/questions/tagged/greenrobot-eventbus?sort=frequent) and use the tag [greenrobot-eventbus](http://stackoverflow.com/tags/greenrobot-eventbus/info) for your question. +Instead, please use [stackoverflow.com](https://stackoverflow.com/questions/tagged/greenrobot-eventbus?sort=frequent) and use the tag [greenrobot-eventbus](http://stackoverflow.com/tags/greenrobot-eventbus/info) for your question. If you want professional support, check http://greenrobot.org/contact-support/. diff --git a/EventBus/build.gradle b/EventBus/build.gradle index 869cfa92..45e34b44 100644 --- a/EventBus/build.gradle +++ b/EventBus/build.gradle @@ -26,7 +26,7 @@ apply from: rootProject.file("gradle/publish.gradle") javadoc { failOnError = false title = "EventBus ${version} API" - options.bottom = 'Available under the Apache License, Version 2.0 - Copyright © 2012-2020 greenrobot.org. All Rights Reserved.' + options.bottom = 'Available under the Apache License, Version 2.0 - Copyright © 2012-2020 greenrobot.org. All Rights Reserved.' } task javadocJar(type: Jar, dependsOn: javadoc) { diff --git a/EventBusAnnotationProcessor/build.gradle b/EventBusAnnotationProcessor/build.gradle index d00f28ea..ac036ae4 100644 --- a/EventBusAnnotationProcessor/build.gradle +++ b/EventBusAnnotationProcessor/build.gradle @@ -31,7 +31,7 @@ apply from: rootProject.file("gradle/publish.gradle") javadoc { title = "EventBus Annotation Processor ${version} API" - options.bottom = 'Available under the Apache License, Version 2.0 - Copyright © 2015-2020 greenrobot.org. All Rights Reserved.' + options.bottom = 'Available under the Apache License, Version 2.0 - Copyright © 2015-2020 greenrobot.org. All Rights Reserved.' } task javadocJar(type: Jar, dependsOn: javadoc) { diff --git a/README.md b/README.md index b914c6a5..0d911ac0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ EventBus ======== -[EventBus](http://greenrobot.org/eventbus/) is a publish/subscribe event bus for Android and Java.
+[EventBus](https://greenrobot.org/eventbus/) is a publish/subscribe event bus for Android and Java.
[![Build Status](https://travis-ci.org/greenrobot/EventBus.svg?branch=master)](https://travis-ci.org/greenrobot/EventBus) @@ -28,7 +28,7 @@ EventBus in 3 steps ``` 2. Prepare subscribers: - Declare and annotate your subscribing method, optionally specify a [thread mode](http://greenrobot.org/eventbus/documentation/delivery-threads-threadmode/): + Declare and annotate your subscribing method, optionally specify a [thread mode](https://greenrobot.org/eventbus/documentation/delivery-threads-threadmode/): ```java @Subscribe(threadMode = ThreadMode.MAIN) @@ -56,7 +56,7 @@ EventBus in 3 steps EventBus.getDefault().post(new MessageEvent()); ``` -Read the full [getting started guide](http://greenrobot.org/eventbus/documentation/how-to-get-started/). +Read the full [getting started guide](https://greenrobot.org/eventbus/documentation/how-to-get-started/). There are also some [examples](https://github.com/greenrobot-team/greenrobot-examples). @@ -100,21 +100,21 @@ If your project uses R8 or ProGuard add the following rules: Homepage, Documentation, Links ------------------------------ -For more details please check the [EventBus website](http://greenrobot.org/eventbus). Here are some direct links you may find useful: +For more details please check the [EventBus website](https://greenrobot.org/eventbus). Here are some direct links you may find useful: -[Features](http://greenrobot.org/eventbus/features/) +[Features](https://greenrobot.org/eventbus/features/) -[Documentation](http://greenrobot.org/eventbus/documentation/) +[Documentation](https://greenrobot.org/eventbus/documentation/) -[Changelog](http://greenrobot.org/eventbus/changelog/) +[Changelog](https://greenrobot.org/eventbus/changelog/) -[FAQ](http://greenrobot.org/eventbus/documentation/faq/) +[FAQ](https://greenrobot.org/eventbus/documentation/faq/) How does EventBus compare to other solutions, like Otto from Square? Check this [comparison](COMPARISON.md). License ------- -Copyright (C) 2012-2020 Markus Junginger, greenrobot (http://greenrobot.org) +Copyright (C) 2012-2020 Markus Junginger, greenrobot (https://greenrobot.org) EventBus binaries and source code can be used according to the [Apache License, Version 2.0](LICENSE). diff --git a/gradle/publish.gradle b/gradle/publish.gradle index 236b4afe..a887ff3a 100644 --- a/gradle/publish.gradle +++ b/gradle/publish.gradle @@ -56,7 +56,7 @@ afterEvaluate { project -> // Common properties, projects still need to set name and description. pom.project { packaging 'jar' - url 'http://greenrobot.org/eventbus/' + url 'https://greenrobot.org/eventbus/' scm { url 'https://github.com/greenrobot/EventBus' @@ -86,7 +86,7 @@ afterEvaluate { project -> organization { name 'greenrobot' - url 'http://greenrobot.org' + url 'https://greenrobot.org' } } }