Plugin key is missing from manifest #774
Replies: 2 comments
-
|
FindSecBugs in itself is not a SonarQube plugin. FindSecBugs is a SpotBugs plugin. You can add SpotBugs with FindSecBugs to SonarQube via the SpotBugs SonarQube plugin. In SonarQube's marketplace you can find it as FindBugs. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Thank you |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I want to add this plugin to SonarQube. To do this, I am adding it via the Dockerfile. Here is my Dockerfile:
When I run my Dockerfile, I get the following error: NullPointerException: Plugin key is missing from manifest.
Is this normal? What solutions exist to fix this issue?
Thank you in advance.
FROM sonarqube:25.9.0.112764-community
ENV SONARQUBE_HOME=/opt/sonarqube
WORKDIR ${SONARQUBE_HOME}
USER root
RUN mkdir -p /opt/sonarqube/extensions/plugins &&
curl -fSL https://repo1.maven.org/maven2/com/h3xstream/findsecbugs/findsecbugs-plugin/1.12.0/findsecbugs-plugin-1.12.0.jar
-o /opt/sonarqube/extensions/plugins/findsecbugs-plugin-1.12.0.jar &&
chmod 666 /opt/sonarqube/extensions/plugins/findsecbugs-plugin-1.12.0.jar &&
chmod 777 /opt/sonarqube/extensions /opt/sonarqube/extensions/plugins
USER 1000
Beta Was this translation helpful? Give feedback.
All reactions