-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restore custom CSS/assets for Javadoc #276
Restore custom CSS/assets for Javadoc #276
Comments
The configuration of the Javadoc tasks was done in two places: the root `build.gradle` file and the `DeployedRoboJavaModulePlugin` plugin. However, it seems that only the configuration in the root `build.gradle` file was taken into consideration. This PR updates the project to only keep the configuration from the root `build.gradle` file. - This closes robolectric/robolectric.github.io#276, since `assets/css/main.css` was actually no longer used. - This also answers robolectric#9430 (comment): the `version` was set on the project. It has nothing to do with Javadoc, and it's still done here: https://github.com/robolectric/robolectric/blob/e24baa272f30bc21b2aab78f16e18c0ce94a7dcd/build.gradle#L28
The configuration of the Javadoc tasks was done in two places: the root `build.gradle` file and the `DeployedRoboJavaModulePlugin` plugin. However, it seems that only the configuration in the root `build.gradle` file was taken into consideration. This PR updates the project to only keep the configuration from the root `build.gradle` file. - This closes robolectric/robolectric.github.io#276, since `assets/css/main.css` was actually no longer used. - This also answers robolectric#9430 (comment): the `version` was set on the project. It has nothing to do with Javadoc, and it's still done here: https://github.com/robolectric/robolectric/blob/e24baa272f30bc21b2aab78f16e18c0ce94a7dcd/build.gradle#L28
I'm starting to wonder if adding back the @utzcoz @brettchabot @hoisie what do you think about dropping that file for good, and removing its reference? |
👍 for removing it. Seems obsolete now. |
This PR removes the custom CSS linked in the generated Javadoc Jar. That CSS file is no longer available since the new website: robolectric/robolectric.github.io#212 This closes robolectric/robolectric.github.io#276
I've submitted a PR to remove the link to |
This PR removes the custom CSS linked in the generated Javadoc Jar. That CSS file is no longer available since the new website: robolectric/robolectric.github.io#212 This closes robolectric/robolectric.github.io#276
This PR removes the custom CSS linked in the generated Javadoc Jar. That CSS file is no longer available since the new website: robolectric/robolectric.github.io#212 This closes robolectric/robolectric.github.io#276
Context
While working on migrating Robolectric's
buildSrc
folder to Kotlin, I stumbled upon this line:https://github.com/robolectric/robolectric/blob/0156803c11ed2109ac53b0c5843d9b7cb7c6ecd1/buildSrc/src/main/groovy/org/robolectric/gradle/DeployedRoboJavaModulePlugin.groovy#L28
However, since the new website, this file does not exist anymore:
Tasks
The goal of this ticket is to restore these files and all their related resources.
Known missing files:
logo-with-bubbles-down.png
#281The text was updated successfully, but these errors were encountered: