Skip to content

Commit

Permalink
https
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Feb 10, 2020
1 parent ddaace5 commit 6f4b8c7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/.

Expand Down
2 changes: 1 addition & 1 deletion EventBus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 - <i>Copyright &#169; 2012-2020 <a href="http://greenrobot.org">greenrobot.org</a>. All Rights Reserved.</i>'
options.bottom = 'Available under the Apache License, Version 2.0 - <i>Copyright &#169; 2012-2020 <a href="https://greenrobot.org">greenrobot.org</a>. All Rights Reserved.</i>'
}

task javadocJar(type: Jar, dependsOn: javadoc) {
Expand Down
2 changes: 1 addition & 1 deletion EventBusAnnotationProcessor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 - <i>Copyright &#169; 2015-2020 <a href="http://greenrobot.org">greenrobot.org</a>. All Rights Reserved.</i>'
options.bottom = 'Available under the Apache License, Version 2.0 - <i>Copyright &#169; 2015-2020 <a href="https://greenrobot.org">greenrobot.org</a>. All Rights Reserved.</i>'
}

task javadocJar(type: Jar, dependsOn: javadoc) {
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
EventBus
========
[EventBus](http://greenrobot.org/eventbus/) is a publish/subscribe event bus for Android and Java.<br/>
[EventBus](https://greenrobot.org/eventbus/) is a publish/subscribe event bus for Android and Java.<br/>
<img src="EventBus-Publish-Subscribe.png" width="500" height="187"/>

[![Build Status](https://travis-ci.org/greenrobot/EventBus.svg?branch=master)](https://travis-ci.org/greenrobot/EventBus)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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).

Expand Down Expand Up @@ -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).

Expand Down
4 changes: 2 additions & 2 deletions gradle/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -86,7 +86,7 @@ afterEvaluate { project ->

organization {
name 'greenrobot'
url 'http://greenrobot.org'
url 'https://greenrobot.org'
}
}
}
Expand Down

0 comments on commit 6f4b8c7

Please sign in to comment.